Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
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
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 17 | |
| 14 |
| User | Count |
|---|---|
| 58 | |
| 50 | |
| 37 | |
| 29 | |
| 24 |