Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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.
Solved! Go to Solution.
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
)
)
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
)
)
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 49 | |
| 44 |