I have a numeric field where I multiply each number by 2.98 unless it is 0. If it is 0, I replace 0 with null-empty
IF(IsEmpty(Regex_Replace([APR]),"0"," ") ELSE CEIL(ToNumber([APR])*2.98) endif does not work the way I want
I have a numeric field where I multiply each number by 2.98 unless it is 0. If it is 0, I replace 0 with null-empty
IF(IsEmpty(Regex_Replace([APR]),"0"," ") ELSE CEIL(ToNumber([APR])*2.98) endif does not work the way I want