Forum Discussion
setis
5 years agoPost Partisan
Title format on a visual
I'm using a measure to format a title on a visual based on a slicer.
The measure is:
KPI_Title =
VAR Selected_KPI = SELECTEDVALUE(Performance_Measures[Name])
RETURN
Selected_KPI & " by month"
The issue is that the name of one of the selections is "Absence paid %" and when I select this one, I get the error: "Cannot convert value 'Absence paid % by month' of type Text to type Numeric.
How can I format the SELECTEDVALUE in the measure above to avoid the error due to the "%" symbol?
Thanks in advance