on ‎2016 Apr 27 5:45 PM
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
Request clarification before answering.
I got it. if anyone is interested, here is the solution.
round(96.8865 * 1000.0) / 1000.0
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can use function format:
format(value, "#.###")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.