Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ejonesHi Michael,
To get more control over how numbers are formatted, look up the format() function in help. Below I used the %f format to always write the number without ever using the exponential notation.
f = if 'RMS_NOTIONAL'.isNull()
then str(null)
else format("%f",'RMS_NOTIONAL')
emit f as "format_f"
See the attachment for additional options.
Attachments:
x.brn