Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

round Numbers to special format

Hi all,

I want to round results in my graph to a special format:

(sum(Erlöse) +10000 => 64.993,22

round(sum(Erlöse) +10000)  => 64.993

result wanted: 65.000

How do I get this?

Thank you for helping!

1 Solution

Accepted Solutions
Gysbert_Wassenaar

Try round(sum(Erlöse) +10000,100) or maybe round(sum(Erlöse) +10000,1000) if you want to round to thousands instead of hundreds.


talk is cheap, supply exceeds demand

View solution in original post

1 Reply
Gysbert_Wassenaar

Try round(sum(Erlöse) +10000,100) or maybe round(sum(Erlöse) +10000,1000) if you want to round to thousands instead of hundreds.


talk is cheap, supply exceeds demand