Forum Discussion
Anonymous
6 years agoNot applicable
Conditional Formatting Not Working
Hello all, First off I am new to Power BI so if this is a simple explanation I apoligize. I tried googling and could not really find a solution. I have a table vizualization that I would like...
- 6 years ago
Anonymous
Yeahh, you have Row with Spaces in that column you need to cleaned before.
One way is create a new Column :
DaysOpennedModified=IF(ISERROR(VALUE('HR'[Days Openned])),BLANK(),'HR'[Days Openned]) , now this column you can change to Whole Number.
Regards
Victor
Anonymous
6 years agoNot applicable
Before I try to change to whole number:
After I change to a whole number:
Vvelarde
6 years agoCommunity Champion
Anonymous
Yeahh, you have Row with Spaces in that column you need to cleaned before.
One way is create a new Column :
DaysOpennedModified=IF(ISERROR(VALUE('HR'[Days Openned])),BLANK(),'HR'[Days Openned]) , now this column you can change to Whole Number.
Regards
Victor
- Anonymous6 years agoNot applicable
This is exactly what I needed, thank you!!! 😁