Hi everyone!
I'm having trouble with the Replace formula not giving me the output I would expect.
I want N/A values to be replaced with nothing so it reads as Null. When using "Replace("N/A", [Value], "")" the output is still N/A for some reason. I'm not sure where I've gone wrong.
Solved! Go to Solution.
Hey @jwlam,
Think you have your formula parameters in the wrong order it should be Replace([Value],"N/A", ""):
This will replace the column values with blank. If you want to replace the values with NULL try this:
IF [Value]="N/A" THEN Null() ELSE [Value] ENDIF
Any questions or issues please ask :)
HTH!
Ira
Thanks for the explanation @Qiu. I totally had it backwards haha.
Thanks @IraWatt. That totally worked!