Forum Discussion
Cumulative count
- Anonymous3 years ago
Hi Anonymous ,
If you don't want to expand your table visual to show cumulative count in continuous date, you don't need to use [Date] in 'Kalendar' table. Or you can add a 'IF' function in your measure.
cumm = IF ( COUNT ( Data[Intern status] ) <> BLANK (), CALCULATE ( COUNT ( Data[Intern status] ), FILTER ( ALL ( Kalendar[Date] ), 'Kalendar'[Date] <= MAX ( Kalendar[Date] ) ) ) )Result is as below.
Best Regards,
Rico ZhouIf this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
If you don't want to expand your table visual to show cumulative count in continuous date, you don't need to use [Date] in 'Kalendar' table. Or you can add a 'IF' function in your measure.
cumm =
IF (
COUNT ( Data[Intern status] ) <> BLANK (),
CALCULATE (
COUNT ( Data[Intern status] ),
FILTER ( ALL ( Kalendar[Date] ), 'Kalendar'[Date] <= MAX ( Kalendar[Date] ) )
)
)
Result is as below.
Best Regards,
Rico Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Anonymous3 years agoNot applicable
Anonymous
I actually want to visually show the data in a line chart. Can I use the same equation?