Hi
My device can only reponse with string in scientific notation with unit.
Like
-2.208827E-12A representing -2.2pA.
I just want pure float data, i.e. -0.000000000002208827 without any character.
How can I achieve that with Data logger suite?
Thanks.
Hello.
You may extract this value (-2.208827E-12) in the parser and specify the Float data type. Then you may use the FormatFloat function in the Expressions plugin
NEWVALUE=FORMATFLOAT('0.00000000000000000', VALUE)