[Solved] There is a decimal number, for example 0.86536636354. I want this number to appear only 2 digits after the comma

Hiya, for appearing only 2 digits after the comma, see this post:

For rounding off number just use round().
Example: round(4.20) should give you a result of 4, or round (Variable(someNumber)) if you want to round off a variable.

It would be nice if you Search the forum first next time, incase it’s already answered.

1 Like