Reputation: 2541
I type in the number 1,234.5678 in cell A1
I type in the formula =round(A1, 1)
(my , and . are switched because of European/Asian standards - could that be the reason you think?)
I tried =sum(round(A1,1)) and any other variation I could think of, all give the same error.
I tried to switch , and . to American standard, and I used ROUND instead of round. Still same error
Upvotes: 0
Views: 500
Reputation: 226
Use =ROUND(A1,2)
And make sure that columns are numbers in format.
Upvotes: 0
Reputation: 8375
How about:
=ROUND(A1;1)
as the comma is often swapped with a semi colon on some systems.
Upvotes: 2