Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hi,
I've been working on some rolling 12 months graphs. Most things are working well, but when diving into the details there's always something not working as expected.
Top matrix show the R12 revenues for different products. And bottom table shows revenue per month and R12 revenues for the choosen product. My problem is that it doesn't show the R12-value for months with 0 revenue.
If I choose the setting "show information wihtout data", then I achieve this, which is not what I want
My current measure:
Date | Revenue | R12 |
2022-01 | 100 | 100 |
2022-02 | 0 | 100 |
2022-03 | 200 | 300 |
2022-04 | 0 | 300 |
Solved! Go to Solution.
I tried with this:
I tried with this:
@Puttsson , if you use period/month from a date table in visual
and use measure like
CALCULATE([Revenue Sum Switch],
DATESINPERIOD(DimDate[Date],max(DimDate[Date]),-12,MONTH) )
Yes, thanks @amitchandak , exactly, that solves one part as I wrote, but creates another issue.
The reason why I don't want it for future months is because I want to show R12 on historical data (Revenue R12), then a prognosis for the future data, which is a separate measure. This separate measaure is done with ISBLANK, and only shown when Revenue R12 is empty.
Thanks
Hi @Puttsson
You could add an IF statement around your calculation to check for future months
Something like:
Revenue R12 =
VAR _MaxDate = MAX(DimDate[Date])
VAR _LastCompleteMonth = EOMONTH(TODAY(), -1)
VAR _Result =
IF( _MaxDate <= _LastCompleteMonth,
CALCULATE([Revenue Sum Switch],
DATESINPERIOD(DimDate[Date],max(DimDate[Date]),-12,MONTH)
),
BLANK()
)
RETURN
_Result
Looks like the one that I posted 🙂
Using LASTDATE(ALL(vFactRM[RevenueDate])) instead of yours
_LastCompleteMonth = EOMONTH(TODAY(), -1)
since last month is dynamic. Could be June, or could be May as of today.
,BLANK()
, CALCULATE([Revenue Sum Switch],DATESINPERIOD(DimDate[Date],max(DimDate[Date]),-12,MONTH)))
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
20 | |
18 | |
17 | |
16 |
User | Count |
---|---|
34 | |
21 | |
19 | |
18 | |
11 |