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! Request now

Reply
Anonymous
Not applicable

Sum some rows in matrix

Hello!!

I have this issue and Im not sure if is possible to do in pbi

 

I have a matrix like this

example matrix.JPG

 
 

I want to sum, only some of the categories, for example in this case, I only want to sum books and sport, and furniture only show the subcategory, with the data, but in the row of the furtinure that can appear blank.

Is possible to do that?

Thanks for the help

 

Monica

3 REPLIES 3
Anonymous
Not applicable

You can make use of the HASONEVALUE function to get what you're looking for, depending on how your data is set up.

The function takes a column name as its argument, you will want to use the column name that contains the subcategories. Your measure might look like this:

Measure = 
IF ( 
NOT(HASONEVALUE[table[subcategory])) && table[category] = "Furniture",
BLANK(),
CALCULATE ( 
SUM( table[value] ) ) 

 

Anonymous
Not applicable

@Anonymous, in a measure that does not have an iteration in it, you cannot compare a naked column to a value, so this measure of yours should error out. Also CALCULATE around SUM is not required. Moreover, this measure is syntactically incorrect.

Best
D

Anonymous
Not applicable

Thanks for the comment, is correct, I cant use this solution, im still looking for a solution for this.

 

 

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.