This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowA new Data Days event is coming soon! This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. Don't miss out.
Hello i am trying to display the prior month totals as a measure in a table where i am showing the totals by month and year... but my measure formula isn't working not sure why? Here is the formula:
Prior days = CALCULATE(SUM('Calendar'[Work Day]),PARALLELPERIOD('Calendar'[Date].[Date],-1,MONTH))
As you can see in the table below i want the 24 for january to show up in february and so on... but the formula above only returns that months totals...
Solved! Go to Solution.
HI @tahir9
Please try this calculated measure
Prior days =
CALCULATE(
SUM('Calendar'[Work Day]),
ALL('Calendar'),
PREVIOUSMONTH('Calendar'[Date])
)
HI @tahir9
Please try this calculated measure
Prior days =
CALCULATE(
SUM('Calendar'[Work Day]),
ALL('Calendar'),
PREVIOUSMONTH('Calendar'[Date])
)
that worked Phil! Thank you! Just curious if you could explain why that worked but my method did not... ?
HI @tahir9
The magic function in my calculation is the ALL function. This allows me to remove the implicit filtering being applied to the underlying dataset and have access to different rows. If you do some internet searching for DAX Filter Context, there will be a bunch of articles or blogs that describe it. I have a section in my book (aka.ms/practicalDAX) that you may also find useful.
Thanks Phil will check out your book as well as these other resources!
Check out the May 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 27 | |
| 26 | |
| 22 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 45 | |
| 44 | |
| 41 | |
| 21 | |
| 18 |