The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I'm trying to simplify my formulas by relying on another defined measure, but can't seem to get it working.
In this example, the dates need to be shifted back a month but otherwise use the same function for the current month.
The measure in reference uses Dates[Date] as the driver and works fine.
Any thoughts on how to get this "nested" measure working?
VAR Date2 = PREVIOUSMONTH(Dates[Date]) RETURN
sumx(filter(Dates,Dates[Date]=Date2),[Revenue])
Solved! Go to Solution.
There are a dozen tables with dates and relationships within - so that's not really an option. All measures are written as some form of sumx(values(dates) or using max(dates) as a workaround.
Hi,
Try this
=CALCULATE([Revenue],PREVIOUSMONTH(Dates[Date]))
There should be a relationship from the Date column of your base data table to the Date column of your Dates table. In the Dates table, extract the month in another column by using the =FORMAT(Dates[Date],"mmmm") formula. In your visual, drag the Month column from your Calendar table.
There are a dozen tables with dates and relationships within - so that's not really an option. All measures are written as some form of sumx(values(dates) or using max(dates) as a workaround.
Hi @avalerion,
The formula @Ashish_Mathur posted is right. What's meaning of "so that's not really an option"? Have you resolved your issue? If you have, welcome to share your solution or mark the right reply as answer. More people will benefit from here.
Thanks,
Angelia
User | Count |
---|---|
65 | |
61 | |
60 | |
53 | |
30 |
User | Count |
---|---|
181 | |
88 | |
70 | |
48 | |
46 |