Knowledge: Using custom number formats
Back
Knowledge
Title*Using custom number formats
ManualAdministration
Manual Level TwoData Rooms
Manual Level ThreeForms Design
Created23/01/2025
DetailTaking the number 1234.56:
You can use the "." character to set the position of the decimal separator and "," for the thousands separator.
- {0:0.000} =
- {0:#,0.00} =
- {0:#,0.####} =
- For scaling larger numbers (using 123000000):
- {0:#,0}
- {0:#,0, K} =
- {0:#,0,, M} =
It is also possible to specify different formats for positive, negative and zero numbers by separating those different formats with the ";" character.
Using the negative number -1234.56:
- {0:0.00} =
- {0:0.00;(0.00);0} =
- {0:0.00;'neg: '-0.00;zero}
Using the number 0:
- {0:0.00 Example} = 1234.56 Example
- {0:0.00 #Example.} = 1234.56 Example
- {0:0.00 '#Example.'} = 1234.56 #Example.
Additional Manual Locations