Round function

The Round function does not work. What could be the reason?
=Round(2,5)
Result: #Name?

Are you using a localized version where the function might have a different name? Is Options-LibreOffice Calc-Formula-Use English function names active?

Also: does the locale use comma as decimal separator? Don’t you need to use dot instead?

Make assumption ‘I’m not using it right’, not ‘it doesn’t work’.

using a dot does not change the result.

You are missing argument. If you want to round 2,5543 to 3, function should look something like =ROUND(2,5543; 0). Last number is telling round function how many decimal places you need. Zero will round to whole number. If you put 2 as last argument, you’ll get 2,56. Check documentation: Mathematical Functions - LibreOffice Help

Functions ROUNDDOWN and ROUNDUP work the same way.

Mike Kaganski’s suggestions are very important, don’t ignore them.

Accept this answer if it helped.

(Editing: 2 decimal place instead of 1 in the second example. Typo.)

=round(2,5543; 0) → result: #NAME?
=round(2,5543; 2) → result:#NAME?

What locale are you using? What about =round(2.5543, 0) → what character you use for decimal separator and for separating arguments in functions?

check it. i think this tutorial say very clear about that.

might be you still havent understand the syntax rightly.