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
jereaallikko
Helper III
Helper III

Calculate difference % with all values

Hi,

 

I am facing a problem with calculating % difference. In a nuthsell, I would like to visualize the difference of X and ALL Values in a table separately. An example data and use case below:

PBIExample.JPG

Ideally, I am looking for a solution (DAX or something else) to calculate the "Number" difference % between 20943_0003 and the rest of the values separately. Similarly, difference % between 29839_0002 and the rest of the values separately, then 29853_0001 and so on..

The idea is that the user can choose and filter ANY ID and see the % difference to every ID Number.

 

The result what I am looking for is this:

PBIEx1.JPG

 

 

 

 

 

 

 

Or this:
PBIEx2.JPG

And same for every Number of each ID. A bit difficult to explain, but hopefully you get the idea. 

 

Is this even possible to do? Anyt tips?

 

Br,

Jere

1 ACCEPTED SOLUTION
v-cazheng-msft
Community Support
Community Support

Hi @jereaallikko ,

 

Just as tamerj1 said, you need create a new table with all IDs and don’t create any relationship between these two tables. Then, take the ID column in the new table to create a Slicer.

vcazhengmsft_0-1649312450164.png

 

vcazhengmsft_1-1649312450164.png

 

But after that, you need create a Measure like this.

Difference =
VAR SelectedID =
    SELECTEDVALUE ( 'NewTable'[ID] )
VAR SelectedNumber =
    CALCULATE ( MAX ( 'Table'[Number] ), 'Table'[ID] = SelectedID )
RETURN
    DIVIDE ( MAX ( 'Table'[Number] ) - SelectedNumber, SelectedNumber )

 

Then the result will look like this.

vcazhengmsft_2-1649312450166.png

 

vcazhengmsft_3-1649312450168.png

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

View solution in original post

3 REPLIES 3
v-cazheng-msft
Community Support
Community Support

Hi @jereaallikko ,

 

Just as tamerj1 said, you need create a new table with all IDs and don’t create any relationship between these two tables. Then, take the ID column in the new table to create a Slicer.

vcazhengmsft_0-1649312450164.png

 

vcazhengmsft_1-1649312450164.png

 

But after that, you need create a Measure like this.

Difference =
VAR SelectedID =
    SELECTEDVALUE ( 'NewTable'[ID] )
VAR SelectedNumber =
    CALCULATE ( MAX ( 'Table'[Number] ), 'Table'[ID] = SelectedID )
RETURN
    DIVIDE ( MAX ( 'Table'[Number] ) - SelectedNumber, SelectedNumber )

 

Then the result will look like this.

vcazhengmsft_2-1649312450166.png

 

vcazhengmsft_3-1649312450168.png

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. If I misunderstand your needs or you still have problems on it, please feel free to let me know. Thanks a lot!

 

Best Regards,

Community Support Team _ Caiyun

Hi @v-cazheng-msft 

This worked out perfectly. Thanks a lot!

 

Br,

Jere

tamerj1
Super User
Super User

Hi @jereaallikko 

you can start with creating simple disconnected Slicer Table. > New Table:

Slicer Table =
VALUES ( Table[ID] )

Then create your difference measure 

Difference =
VAR SelectedID =
    SELECTEDVALUE ( 'Slicer Table'[ID] )
VAR CurrentID =
    SELECTEDVALUE ( Table[ID] )
RETURN
    IF (
        COUNTROWS ( ALLSELECTED ( 'Slicer Table'[ID] ) ) = 1,
        DIVIDE ( CurrentID - SelectedID, CurrentID )
    )

 

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.

Top Solution Authors