Converting the Numbers in the stats to the Nordic Number Format
Comments
-
Hi Mahulima,
I have found there is a community function called Comma Separate Number that can do almost just that.
Comma Separate Number - 'Inserts a comma separator every three digits so 99999.99 becomes 99,999.99'
Then 'Replace' the commas with spaces.
If the function above is not available/ showing up, you can recreate it using 'Regular expression replace' with the following expressions:
Search value: (?:^|\G)(\d{1,3})(?=(\d{3})+(?:\.\d+)?$)
Replacement value: $1,
Hope that helps
3