Trying to create a power query column where it adds how many consecutive days a certain row is in the top 10 and reset to 0 if it falls out.
(every time I data refresh the list changes). I try to create a custom column but I am unable to reference itself. Is that possible?
I am trying to do something in the lines of
if [Rank] < 11 then [Days in top 10] + 1 else 0
If rank is between 1-10 then add one to itself else reset to 0