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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
cocoloco79
Helper III
Helper III

Tabula Matrix with Column

Hi 

 

Is there a way to add a measure or calcuated column, and only apply it to the totals?

For now I have moved them to rows as if I add them to values, It will apply it by size as you can see in the screenshot.

 

It would already help if you can tell me how I can prevent summing up the % column. There should either be no total or it should max at 100.

 

I'm stuck with this, but feel there is a solution to it.

 

Thanks in advance.

 

 

 

Screenshot 2025-03-16 155854.png

1 ACCEPTED SOLUTION

ok, try using %_Fixed =
VAR IndividualPercent = [Your_Percentage_Measure]
RETURN
IF(
HASONEVALUE('YourTable'[Planting]), 
IndividualPercent,
BLANK() -- Keeps total row blank
)

Power BI & Microsoft Fabric
PL-300 | DP-600 | DP-700 Certified

View solution in original post

4 REPLIES 4
cocoloco79
Helper III
Helper III

Thank you @techies . I applied it but the percentage against each size is calcuated correctly, however the column total shows 30 instead of 100

ok, try using %_Fixed =
VAR IndividualPercent = [Your_Percentage_Measure]
RETURN
IF(
HASONEVALUE('YourTable'[Planting]), 
IndividualPercent,
BLANK() -- Keeps total row blank
)

Power BI & Microsoft Fabric
PL-300 | DP-600 | DP-700 Certified

That soution will still return a value in the subtotal, if a date has a single planting. To avoid this use can ISINSCOPE

 

VAR IndividualPercent = [Your_Percentage_Measure]
RETURN
IF(
ISINSCOPE('YourTable'[Planting]),
IndividualPercent,
BLANK() -- Keeps total row blank
)


Did I answer your question?
Please help by clicking the thumbs up button and mark my post as a solution!
techies
Super User
Super User

Hi @cocoloco79 please try this

 

%_Fixed =
VAR IndividualPercent = [Your_Percentage_Measure]
RETURN  
IF(
    ISINSCOPE('YourTable'[Planting]),
    IndividualPercent,  
  BLANK()
)
Power BI & Microsoft Fabric
PL-300 | DP-600 | DP-700 Certified

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.