Forum Discussion
IwanVB
4 years agoFrequent Visitor
Matrix - Replace zero by blank
I have some large Matrix visuals with also many Zero's (0) in there. To improve readability I would like to replace the Zero by Blank or something else e.g. "-". Google gives many tips on how to repl...
- Anonymous4 years ago
like this?
dax = if ([value]=0 || [value]= blank(),"-")
IwanVB
4 years agoFrequent Visitor
THANKS....this works perfect. Did not exect it to work since I made the assuption that the null values created by the Matrix visual self would not be replaced, but they are.