Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello All,
I have been stuck on this issue for a few hours and really can't seem to fix it. Any help would be greatly appreciated.
DateDim Table
Deals Table
I have a measure called "Average Cost" which is the Total Cost / Total number of deals. This measure works as expected and can be filtered by whichever month has been selected. My issue is when I try to create a measure for Average cost Last month. To do this I have created a measure called PreviousDate
PreviousDate measure - This value is generated depending on whatever is selected in the filter. For example I have currently selected May 2022, so the measure shows 2022-04
I am then trying to filter the Deals table, where the YearMonth Column = Previous Month measure. See below
What I have tried
After researching this, I believe the work around was to use all function & filter function, so I produced this
Average Cost Last Month =
CALCULATE([Average Cost],
all('DateDim'[YearMonth]), filter(DateDim, DateDim[YearMonth] = [PreviousDate])
)
But this just returns a blank value. I need the AVERAGE COST MEASURE but only for values that are in the PREVIOUSMONTH to the current month selected
Solved! Go to Solution.
Hi,
Could you please try something like below and please check whether it suits your requirement?
Average Cost Last Month =
VAR _prevdate = [PreviousDate]
RETURN
CALCULATE (
[Average Cost],
FILTER ( ALL ( DateDim ), DateDim[YearMonth] = _prevdate )
)
Hi,
Could you please try something like below and please check whether it suits your requirement?
Average Cost Last Month =
VAR _prevdate = [PreviousDate]
RETURN
CALCULATE (
[Average Cost],
FILTER ( ALL ( DateDim ), DateDim[YearMonth] = _prevdate )
)
Worked great thank you!
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 38 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |