Forum Discussion
Anonymous
4 years agoNot applicable
Running Total Required
Hi All I have data below I need Running Total of VarFlag for Employee, Date, Day , kindly help
Greg_Deckler
4 years agoCommunity Champion
Anonymous So maybe something like:
Running Total Measure =
VAR __EmplyID = MAX('Table'[Emply ID])
VAR __Date = MAX('Table'[Date])
VAR __Table = FILTER(ALL('Table'), [Emply ID] = __EmplyID && [Date] <= __Date)
RETURN
SUMX(__Table, [VarFlag])Anonymous
4 years agoNot applicable
Not working as showing below:
- Anonymous4 years agoNot applicable
Hi Anonymous ,
I don't know what the problem is. Could you please provide your pbix file without privacy information and desired output for me to test?
Best Regards
Community Support Team _ Polly
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.