Forum Discussion

Step927's avatar
Step927
Regular Visitor
1 year ago
Solved

Consecutive days with no increment in Running Total

Dear All,   I want to create a calculated column that returns a string if a Player has an increment in goal scored compared with the previuos day. Please consider that  "goal " is a running total....
  • Ashish_Mathur's avatar
    Ashish_Mathur
    1 year ago

    Hi,

    Try this calculated column formula

    Column = calculate(countros(Data),filter(Data,Data[Name]=earlier(Data[Name])&&Data[Day]<=earlier(Data[Day])&&Data[Goal]=earlier(Data[Goal])))

    Hope this helps.