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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Anonymous
Not applicable

Add % Diff from two years

Dear All, 

 

I need to add a DAX to show only the % change difference between 2 years where it always compares( Max Date / Min Date)-1

 

I've tried 2 things and it did return the change percent correctly, but I could not make it work for visualization chart. It returns 0 once added years in the column.  

 

First attempt: 

 

Diff from 2way total = IF([Total 2way]<>0,(DIVIDE(CALCULATE([Total 2way],FILTER('Calendar','Calendar'[Year]=MAX('Calendar'[Year]))), CALCULATE([Total 2way],FILTER('Calendar', 'Calendar'[Year]=MIN('Calendar'[Year]))))),0)-1

 

Second attempt: 

 

Max 2way = CALCULATE(SUM(ATM[2way AC]), FILTER('Calendar','Calendar'[Year]=MAX('Calendar'[Year])))

Min 2way = CALCULATE(SUM(ATM[2way AC]), FILTER('Calendar','Calendar'[Year]=MIN('Calendar'[Year])))

Diff in % = IF([Max 2way]<>0,(DIVIDE([Max 2way],[Min 2way],0)-1))

 

issu - bi.PNG

 

If added measure it will calculate both 2017 and 2018, but not the difference

 

ssss.PNG

 

Here the Diff % value is correct but I have to add both [Max 2way] and [Min 2way] in the column value. 

 

Thank you, 

 

2 ACCEPTED SOLUTIONS
Greg_Deckler
Community Champion
Community Champion

You could solve that last issue through the use of ALL. 

 

Sample data would help tremendously. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

View solution in original post

Hi @Anonymous,

 

It could be like below.

Max 2way =
CALCULATE (
    SUM ( ATM[2way AC] ),
    FILTER ( ALL ( 'Calendar' ), 'Calendar'[Year] = MAX ( 'Calendar'[Year] ) )
)
Min 2way =
CALCULATE (
    SUM ( ATM[2way AC] ),
    FILTER ( ALL ( 'Calendar' ), 'Calendar'[Year] = MIN ( 'Calendar'[Year] ) )
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Could you please mark the proper answers as solutions?

 

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Community Champion
Community Champion

You could solve that last issue through the use of ALL. 

 

Sample data would help tremendously. Please see this post regarding How to Get Your Question Answered Quickly: https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...
Anonymous
Not applicable

Thanks, Greg 

 

Could you please explain where should I use "ALL"? 

 

 

Hi @Anonymous,

 

It could be like below.

Max 2way =
CALCULATE (
    SUM ( ATM[2way AC] ),
    FILTER ( ALL ( 'Calendar' ), 'Calendar'[Year] = MAX ( 'Calendar'[Year] ) )
)
Min 2way =
CALCULATE (
    SUM ( ATM[2way AC] ),
    FILTER ( ALL ( 'Calendar' ), 'Calendar'[Year] = MIN ( 'Calendar'[Year] ) )
)

Best Regards,

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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