The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have created a rolling total measure -
Hello @bhavnachalise15,
Can you please try modifying the measure for tooltip compatibility:
RT =
VAR _EndDate =
IF(
HASONEVALUE(dimCalendar[Period]),
MAX(dimCalendar[Period]),
LASTDATE(dimCalendar[Period])
)
VAR Amt =
CALCULATE(
Count Measure,
FILTER(
ALLSELECTED(dimCalendar),
dimCalendar[Period] <= _EndDate
)
)
Var Final =
IF(ISBLANK(Count Measure), BLANK(), Amt)
RETURN
Final
Should you require any further assistance, please do not hesitate to reach out to me.
No This isn't working for rolling total.
User | Count |
---|---|
25 | |
10 | |
8 | |
6 | |
6 |
User | Count |
---|---|
31 | |
12 | |
10 | |
10 | |
9 |