How do I round a number of 2 decimals?

At the moment I am trying to get rounded values (2 decimals) from Excel with the robot, but if I paste the values it does not round up or down. I just get the two last decimals.

Does somebody know what to do?

newValue = math.Round(oldValue,2) //// (2 - represents the number of decimals)

25 Likes

I did try this, but the value will not convert to a Double. Wich makes it impossible to round in UI Path

2 Likes

You can always convert a variable to double by using Cdbl(xxx)

1 Like

It works, thanks a lot

it is also working for me…thank you

1 Like

can you provide example by considering decimal variable?