Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Kurt4597
Helper I
Helper I

Previous Month Filtering

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

Kurt4597_4-1662053968964.png

 

 

Deals Table

Kurt4597_5-1662053988156.png

 

 

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

Kurt4597_2-1662053183450.png

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 

Kurt4597_3-1662053433138.png

 

What I have tried 

I did initially try the formula 
Average Cost Last Month = CALCULATE([Average Cost], DateDim[YearMonth] = [PreviousDate])

But I am Given This error 
Kurt4597_0-1662111510236.png

 

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

Any help would be massively appreciated!
 
-

 




 

 

1 ACCEPTED SOLUTION
Jihwan_Kim
Super User
Super User

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 )
    )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

View solution in original post

2 REPLIES 2
Jihwan_Kim
Super User
Super User

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 )
    )

If this post helps, then please consider accepting it as the solution to help other members find it faster, and give a big thumbs up.


Click here to visit my LinkedIn page

Click here to schedule a short Teams meeting to discuss your question.

Worked great thank you!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors