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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Percent difference calculation using different values

Hi there!

 

I am looking for some help with my dax:

I have a very simplified dataset and I want to calculate the percent difference (V2-V1)/V1 . I would like a way to calculate the percent difference based off of different reference values: AVGstatic, AVGmonthly (calculated). I would only like to have 1 column called 'Percent difference' , but I don't know how to filter the table properly. 

 

Thank you for your help.

 

Corey

 

OUTPUT: 

 

AVGstatic = 6

 

TABLE 1:

DateBananas EatenPercent difference
1.1.202460
1.2.2024717%
1.3.2024833%

 

AVGMonthly = 10

TABLE 1:

DateBananas EatenPercent difference
1.1.20246-40%
1.2.20247-30%
1.3.20248-20%
1 ACCEPTED SOLUTION
v-kongfanf-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can try dax like below:

 

M1 =
VAR cur =
    IF (
        NOT ISBLANK ( SELECTEDVALUE ( slice[tag] ) ),
        SELECTEDVALUE ( slice[value] ),
        BLANK ()
    )
RETURN
    ( MAX ( 'Table'[Bananas Eaten] ) - cur ) / cur

 

vkongfanfmsft_0-1704876132690.png

 

Best Regards,
Adamk Kong

 

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

1 REPLY 1
v-kongfanf-msft
Community Support
Community Support

Hi @Anonymous ,

 

You can try dax like below:

 

M1 =
VAR cur =
    IF (
        NOT ISBLANK ( SELECTEDVALUE ( slice[tag] ) ),
        SELECTEDVALUE ( slice[value] ),
        BLANK ()
    )
RETURN
    ( MAX ( 'Table'[Bananas Eaten] ) - cur ) / cur

 

vkongfanfmsft_0-1704876132690.png

 

Best Regards,
Adamk Kong

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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