RE: Excel
Hi Olga
Thank you for your question and welcome to the forum.
The Round function will round a number to a given number of decimal places.
If A1 contains 1234.567
Then =Round(A1,2) returns 1234.57
And =Round(A1,0) returns 1235
A slightly different use is to round to hundreds or thousands using negative as the number of places.
So =Round(A1,-3) would return 1000.
I hope that explains it.
Laura GB