Forum Discussion
erihsehc
8 years agoHelper III
number formating issue
hi there, I would like the number format in %, however, when I used formula ratio% = IFERROR(SUM(Sheet1[sales])/SUM(Sheet1[cost]),"na"), the result cannot be formatted in %, how to solve this? th...
GilbertQ
8 years agoSuper User
Hi erihsehc
Unfortunately there currently is no other way to format the measures so that they can change based on different scenario's.
I would suggest going to https://ideas.powerbi.com and voting for the idea.
Anonymous
8 years agoNot applicable
Could you consider a 2nd Formatting Measure for your cards? Something like
Formatted = Var MeasureResult = [YourMeasure]
RETURN
IF(
MeasureResult = "na",
"NA",
(MeasureResult * 100) & "%"
)