Forum Discussion
Gauge Visual - Custom Label under Callout VAlues
Hi Experts
I was hope that adding the following DAX under the Custom Label under Callout Values for a Gauge Visual would show "N/A" when the cell was blank for that KPI
5.2 Blanks =
VAR Avalue = FORMAT(AVERAGE([5.2]),"0%")
RETURN
IF(ISBLANK(Avalue),"N/A",Avalue)in this case if KPI 5.2 was left blank - i want to see "N/A".
- Anonymous1 year ago
I agree that using a Card visual will be much easier. You could try something similar to the solution in the following thread, which uses the card visual to cover the value on the Gauge Visual when the value is "N/A".
Solved: How can I get a blank pie chart to show 0 is no va... - Microsoft Fabric Community
Best Regards,
Jing
2 Replies
- BhavinVyas3003Super User
Hi,
Gauge Visual is designed to display numeric values because it relies on a minimum, maximum, and target range, which all require numerical data.
If you must use a Gauge, modify the measure to return 0 instead of "N/A".
If you want "N/A" to be visible, use a Card Visual instead.
Thanks,
Bhavin
- AnonymousNot applicable
I agree that using a Card visual will be much easier. You could try something similar to the solution in the following thread, which uses the card visual to cover the value on the Gauge Visual when the value is "N/A".
Solved: How can I get a blank pie chart to show 0 is no va... - Microsoft Fabric Community
Best Regards,
Jing