0

Thousands Separator

Hi, I'd like to display a amount in € this way : 1.000.000 € (no decimal), but the Format number function doesn't operate, I never get the Thousands Separator.
Thanks

8 replies

null
    • dewittejacques
    • 3 yrs ago
    • Reported - view

    Hi Pierre,

    The best way would probably to use a formula where you transform the number into a formatted text using the FORMAT function, as below :

    format( Number, Format ) converts a Number into a formatted text. As Format a Text is needed:

    0 represents a number or 0
    # represents a number that is diplayed only, if the number is big enough
    . represents the decimal separator (will be formatted according to the country, that means, in the UK and US it is shown as a floating point)
    , represents the grouping separator (will be formatted according to the country,that means, in the UK and US it is shown as a comma)
    Examples:

    format(42.5, "0") results in "42"
    format(42.5, "000") results in "042"
    format(42.5, "000.00") results in "042.50"
    format(42.5, "0.00") results in "42.50"
    format(42.5, "#,##0.00") results in "42.50"
    format(1042.5, "#,##0.00") results in "1,042.50"

    • Pierre_COLLE
    • 3 yrs ago
    • Reported - view

    Hello Jacques, I'm sorry I probably don't manipulate the good function in the good place, but when I do that :

     

    I get That :

    • Pierre_COLLE
    • 3 yrs ago
    • Reported - view

    with these parameters :

    • Nick
    • 3 yrs ago
    • Reported - view

    It works for me:

    1.  click this format

    Screen Shot 2020-05-05 at 11.06.36

    2. Then click Number Format box again and set the Digits to 0

    Screen Shot 2020-05-05 at 11.06.58

    3. The result is

    Screen Shot 2020-05-05 at 11.07.08

    • Pierre_COLLE
    • 3 yrs ago
    • Reported - view

    No, KO for me, as you can see the selection of Thousands Separator does'nt display "." in the choices, for me ...

    • Nick
    • 3 yrs ago
    • Reported - view

    Then, maybe is your system settings?

    I know that Ninox doesn't have it's own control panel for Dates and follows Mac settings for desktop app and Browser settings for web app.

    Maybe this applies for numbers too?

    • Pierre_COLLE
    • 3 yrs ago
    • Reported - view

    Well done Nick !!!

    Before : 

     

    After :

     

    And it works :

     

    Thank you :) Have a good day

    • Nick
    • 3 yrs ago
    • Reported - view

    :-)

Content aside

  • 3 yrs agoLast active
  • 8Replies
  • 1302Views