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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
jkesavan
Frequent Visitor

Adding two values from a generated matrix table

Hi is there currently a way to just add two values made from a matrix table? Its relatively easy in excel as you just add two rows but struggling to figure this out in PowerBI. For example below:

 

jkesavan_0-1600826805904.png

i want to add the Early and Late columms. so the Diamond section will just produce 69.2% (8.55 + 60.65). 

 

Thank you. 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @jkesavan 

Due to I don't know your data model, I build a measure and see the result you want in column subtotal.

1.png

Measures:

Measure = 
CALCULATE(SUM('Table'[Value1]),FILTER('Table','Table'[Status]=MAX('Table'[Status])))/100
Measure2 = SUMX(FILTER('Table','Table'[Section] = MAX('Table'[Section])),[Measure])

Result:

2.png

If this reply still couldn't solve your problem, please provide me with your pbix file by your Onedrive for Business.

 

Best Regards,

Rico Zhou

 

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

3 REPLIES 3
amitchandak
Super User
Super User

@jkesavan ,

If they are values in table , create a new column

 

new Type =
Switch ( True() ,
[Type] in {"Early" ,"Late"} ," Not on Time",
"On Time"
)

and use that. else you can explore segmentation or binning

 

if they are measures
Not on Time = [Early]+[Late]

https://www.daxpatterns.com/dynamic-segmentation/
https://www.daxpatterns.com/static-segmentation/

Full Power BI Video 20 Hours YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

@amitchandak i have sent you a private message to send the pbix file. 

Anonymous
Not applicable

Hi @jkesavan 

Due to I don't know your data model, I build a measure and see the result you want in column subtotal.

1.png

Measures:

Measure = 
CALCULATE(SUM('Table'[Value1]),FILTER('Table','Table'[Status]=MAX('Table'[Status])))/100
Measure2 = SUMX(FILTER('Table','Table'[Section] = MAX('Table'[Section])),[Measure])

Result:

2.png

If this reply still couldn't solve your problem, please provide me with your pbix file by your Onedrive for Business.

 

Best Regards,

Rico Zhou

 

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

 

Helpful resources

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

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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