cancel
Showing results for 
Search instead for 
Did you mean: 

rounding a number to 3 decimal places in MII

0 Kudos

How to round the number to 3 decimal places in SAP MII BLS?

For example: I want to round this number 9.8910000123 to 3 decimal places. I am expecting the value to be 9.891.

-Thanks

Accepted Solutions (1)

Accepted Solutions (1)

I got it. if anyone is interested, here is the solution.

round(96.8865 * 1000.0) / 1000.0

Answers (1)

Answers (1)

jurgen_de_jong
Explorer

You can use function format:

format(value, "#.###")