Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
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.
Solved! Go to Solution.
ok, try using %_Fixed =
VAR IndividualPercent = [Your_Percentage_Measure]
RETURN
IF(
HASONEVALUE('YourTable'[Planting]),
IndividualPercent,
BLANK() -- Keeps total row blank
)
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
)
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
)
Hi @cocoloco79 please try this
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 49 | |
| 40 | |
| 37 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 85 | |
| 70 | |
| 37 | |
| 28 | |
| 27 |