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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Good day,
I am experiencing an issue whereby I cannot seem to get the Gauge to accurately represent a percentage.
When formatting my measure using the FORMAT function, the visual does not allow me to add it to the "VALUE" section of the Gauge. Removing this does allow me to add it to the value column, (the same happens with the "Maximum" value). However, I want it to be represented as a percentage of total. When using the "Show as percentage of total", both show as 100%.
Please see the formula below of the percentage I wish to represent using a gauge chart.
Solved! Go to Solution.
Hi Try This,
Create a Measure to count all
Total Values = COUNTROWS ( 'Table' )
Then another Measure to Calculate the %
% =
DIVIDE (
CALCULATE ( [Total Values], FILTER ( 'Table', 'Table'[Value] > 0 ) ),
[Total Values],
0
)
After you create the % Measure - select it - go to the Modeling tab and Format it as Percentage
Then create you gauge and add the Measure to the Values
HOPE THIS WILL HELP
Hi Try This,
Create a Measure to count all
Total Values = COUNTROWS ( 'Table' )
Then another Measure to Calculate the %
% =
DIVIDE (
CALCULATE ( [Total Values], FILTER ( 'Table', 'Table'[Value] > 0 ) ),
[Total Values],
0
)
After you create the % Measure - select it - go to the Modeling tab and Format it as Percentage
Then create you gauge and add the Measure to the Values
HOPE THIS WILL HELP
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!