Forum Discussion
Anonymous
7 years agoNot applicable
replace number to string
Hi, How to convert "99990.0%" to NA, others remain same? I tried to use if statement, but got error message. Thanks!
Anonymous
7 years agoNot applicable
Hi Yu,
thanks for reply. The column comes from table(not calculated measure or calculated column). I applied the formular "Measure=IF(MAX(Table1[Column1])=9999,"N/A",MAX(Table1[Column1]))"
which you provided , but I got the error message:
I can't replace 99999 to 0, have to replace 9999 to NA for business purpose. Another solution?
Thanks!
SivaMani
6 years agoResident Rockstar
Anonymous,
Please do try the below one,
Measure=IF(MAX(Table1[Column1])=9999,"N/A",FORMAT(MAX(Table1[Column1],"0.0%")))