I have copied formula in .png file:
output column is Value Trimmed and data type is Double
if contains ([Value], "%") then [Value Trimmed]/100 else [Value Trimmed] endif
when Value=98.05% the above formula outputs 0.9805 as expected
however, when Value="N/A" the above formula outputs N/A as [Null]
how would I update the above to include N/A in the output when Value=N/A?
Thank you