Hi,
I would like to apply the rounding half up.
This format_number I found in docs tends to do a round half down: format-number(amount,'#,##0.00','dollar')
But I want to round to 2 digits for example:
0.105 becomes -----------> 0.11
0.104 becomes -----------> 0.10
How to achieve that?