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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
thoma4sl
Regular Visitor

What would the DAX formula be if I wanted to have these calculation on a measure.

I want to create a measure that would use another measure that is the variance of salesvalues from 2019 and 2020 using the following filters. Not sure how that DAX command would look like. 

 

 

thoma4sl_0-1626982882030.png

 

2 REPLIES 2
daxer-almighty
Solution Sage
Solution Sage

The most important observation about your model is that it's wrong and you should change it. Hard-coding the names of years in your measures or fields is a clear sign you should really try to make an effort and learn the rules of data modeling for Power BI. If you don't do this... well, you'll be in trouble very soon and rather sooner than later.

Mohammad_Refaei
Solution Specialist
Solution Specialist

NewMeasure =
IF (
    AND ( [SALES_VALUE for 2019] <> 0, [SALES_VALUE for 2020] <> 0 ),
    [SALES_VALUE for 2020] - [SALES_VALUE for 2019]
)

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.