March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hey,
I have a cumulative measure which works fine in theory, but it has the additional complexity of the ability to use a legend. I am using it to get a count of actions by weeks to an event, and there are multiple events.
Here is the DAX:
Cumulative Bookings by event=
CALCULATE(count(bookings),
FILTER(
ALLSELECTED([Weeks to Event]),
[Weeks to Event] <= MAX([Weeks to Event])
),
VALUES([Event])
)
And it almost works...
But as you can see, where a event doesnt have data for e.g. 22 weeks to the event, it just shows the total bookings. I would like it to be 0 in this case.
Can anyone see where i need to change the DAX to fix this?
Thanks,
H_Jones
User | Count |
---|---|
116 | |
77 | |
58 | |
52 | |
46 |
User | Count |
---|---|
170 | |
117 | |
63 | |
56 | |
51 |