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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.