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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
MRadaci
Regular Visitor

Calculating Differences

Hello, 

 

Pardon my ignorance, but I am in need of some direction/assiatnce. I have a table that I need to calculate the difference of the daily_%_total by column "dialer" (has 2 values, N and U) and column "dt". 

 

Is this possible within Power BI? I have tried filtering, grouping as well as allexcept without any success.

 

Source table:

Table.PNG

 

 

 

 

 

 

 

 

Desired Result:

Desired Result.png

 

 

 

 

 

 

 

 

 

Any assitance is greatly appreciated. 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @MRadaci,

 

You can try to use below formula to show diff on total level.

Diff =
IF (
    ISFILTERED ( Sheet1[system] ),
    SUM ( Sheet1[daily_%_total] ),
    CALCULATE ( SUM ( Sheet1[daily_%_total] ), Sheet1[system] = "N" )
        - CALCULATE ( SUM ( Sheet1[daily_%_total] ), Sheet1[system] = "U" )
)

6.PNG

 

Regards,
Xiaoxin Sheng

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

HI @MRadaci,

 

It will be help if you share sample data/pbix file for test.


In addition, if you mean create dynamic column/table from slicer/filter, current power bi not support this, please use measure to instead.

Calculated Column/Table Change Dynamically According to Slicer Selection in the Report.

 

Regards,

Xiaoxin Sheng

Hi Xiaoxin!

 

Thanks for your response. I have attached a sample dataset (xls).

 

The goal is for a sliced date, compare difference in systems (N vs. U) for each category's %.

 Desired Result.png

Thanks for any assitance you can provide.

 

https://github.com/AFC1886/SampleData/blob/master/Example%20Data.xlsx

 

 

 

Anonymous
Not applicable

Hi @MRadaci,

 

You can try to use below formula to show diff on total level.

Diff =
IF (
    ISFILTERED ( Sheet1[system] ),
    SUM ( Sheet1[daily_%_total] ),
    CALCULATE ( SUM ( Sheet1[daily_%_total] ), Sheet1[system] = "N" )
        - CALCULATE ( SUM ( Sheet1[daily_%_total] ), Sheet1[system] = "U" )
)

6.PNG

 

Regards,
Xiaoxin Sheng

Hi @Anonymous, 

 

I just wanted to say thanks for your assitnace. It was very helpful. What a great community!

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.