Forum Discussion
Anonymous
5 years agoNot applicable
Cumulative Total and Filter
Hi Community, this is my first post and I have already browsed the web for solutions, but somehow, I am stuck. 😕 So I am trying to show cumulated training completions per date (run-up) in a gra...
lbendlin
5 years agoSuper User
VAR Result =
IF (
FirstVisibleDate <= LastDateWithSales,
CALCULATE (
COUNTA([User ID]),
'TKLMSREPORT - 2021-08-02T144129 529'[Completion Date] <= LastVisibleDate
)
)
What should happen if the condition is not met?