Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I am trying to put together a if statement in the below in the expression but only the first value is being parsed as valid. Please help.
if(A=0,null,B/C)
Hi
Null is a function, so like this:
If(A = 0, Null(), B / C)
HTH
Jonathan
Thank your for your quick reply and help.