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! Learn more

Reply
Anonymous
Not applicable

Calculating Delta of many parameters and Show in The Matrix

Hi All, 

 

Hi All.

Asking for help from you. 

I would like to have a Comparison Table using Matrix on PowerBI of Actual VS Budget. The aim is to know the difference between Actual and Budget from each Component Delta = (Amount of Actual) - Amount of Budget, also Delta Percentage = Delta / Budget.

 

This is the dummy dataset on Excel:

 
NameABCDEFTAG
XY131212Actual
YZ122223Actual
XY221332Budget 
YZ121221Budget 

 

This is what we have in powerBI Matrix:

 

Matrix Trial.JPG

 

 

 

 

 

 

How can i add The Delta and Delta Percentage instead of Total? The aim is to have both on the same column for every row.

 

Thank you for your kind help.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous 

 

You may create measure instead of using column value:

After unpivot the A to F columns, you may create following measures.

 

actual = CALCULATE(SUM('Table'[Value]),FILTER('Table',[TAG]="Actual"))
budget = CALCULATE(SUM('Table'[Value]),FILTER('Table',[TAG]="Budget"))
delta = [actual] - [budget]
delta% = [delta] / [budget]
V-pazhen-msft_0-1616045872793.png

 

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Anonymous 

 

You may create measure instead of using column value:

After unpivot the A to F columns, you may create following measures.

 

actual = CALCULATE(SUM('Table'[Value]),FILTER('Table',[TAG]="Actual"))
budget = CALCULATE(SUM('Table'[Value]),FILTER('Table',[TAG]="Budget"))
delta = [actual] - [budget]
delta% = [delta] / [budget]
V-pazhen-msft_0-1616045872793.png

 

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

Anonymous
Not applicable

UP UP

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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