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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
Right now, when you do a 'percent of grand total' or 'percent of row', it forces a number with 2 decimal places. This takes up a lot of space and can detract from the visual. Can you give us control over the number of decimal places shown?
@Anonymous
You can write your own measure that will give the % of the grand total and that way you can change the amount of decimal places to your desired granularity:
% of Total = DIVIDE( [Base Measure], CALCULATE( [Base Measure], ALL( Table1)))