Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I have a pivot table with 5 measures. I have to hide subtotal values for only sale %. is there any way to convert sale % sub total value to 0 or completly hide the value.
Thanks
Solved! Go to Solution.
You can use this pattern to do that.
Yes. You can make a new measure like this that references your existing measure and use it instead.
Sale % No subtotals = IF (HASONEVALUE(Table[Company Name]), [Sale %])
Pat
Hi @ppm1 Thanks for your help. It's working fine for subtotals but totals also showing blank along with sub totals. Is there any way to hide only subtotal and show total.
You can use this pattern to do that.