Cut long numbers
-
Hello community,
does anybody know a solution to cut long results in comments (for example after 2 digits)? Unfortunately rounding is only possible after the first non-0 after "."
Have a good week!
Tommi -
Not exactly sure what you need but if you put this in text code input: DoubleToString(x.xx,2)
x.xx being the number you want to cut, you can also add the name of a variable and this will be cut, 2 is the number of digits past the decimal point.
-
@jstap said in Cut long numbers:
Not exactly sure what you need but if you put this in text code input: DoubleToString(x.xx,2)
x.xx being the number you want to cut, you can also add the name of a variable and this will be cut, 2 is the number of digits past the decimal point.
Thank you @jstap ! I will try it.
-
Do you have an example @jstap ?
Unfortunately all what I earn are errors ... -

-
It works very well @jstap ! Thank you very much!
-
