Forum Discussion
Culmulative Count is not Working
Hi, Experts,
I would appreciate it if you can help.
I would like to count the rows which the date is less than max date. I refered some community Dax, but it always return 1 instead of the culmulative count.
I am not sure how your expected outcome looks like, but please try the below calculated column.
z count of date 1 CC =
VAR currentenddate = '3 Concur Specialist Timecard'[End Date]
RETURN
COUNTROWS (
FILTER (
'3 Concur Specialist Timecard',
'3 Concur Specialist Timecard'[End Date] <= currentenddate
)
)
1 Reply
- Jihwan_KimSuper User
I am not sure how your expected outcome looks like, but please try the below calculated column.
z count of date 1 CC =
VAR currentenddate = '3 Concur Specialist Timecard'[End Date]
RETURN
COUNTROWS (
FILTER (
'3 Concur Specialist Timecard',
'3 Concur Specialist Timecard'[End Date] <= currentenddate
)
)