Skip to main content
Solved

Format Numbers - From 1,00.00 to 1.000,00

  • April 4, 2024
  • 2 replies
  • 63 views

julia.bauer
Level 9
Forum|alt.badge.img+6

Hello everyone,

 

this is probably very easy but I'm lacking the syntax that converts the number format. Can somebody please support me on this?

Thank you!

Best regards

Julia Bauer

Best answer by dennis.pflug

Hi Julia,

 

have you tried it this way?

 

This can be used within Action Flows: 

 

formatNumber (number; decimalPOINTS; [decimalSeparator]; [thousandsSeparator])

Returns a number in the requested format. Decimal point is `,` by default, Thousands separator is `.` by default.

 

formatNumber( 123456789 ; 2 ; , ; . )

 

= 123.456.789,00

 

Using Number Format within Analyses / Views I think it is not possible doing this by using the Format feature. Here the thounsandsSeparator is everytime a comma and the decimalSeparator is everytime a dot.

 

https://www.celopeers.com/s/feed/0D50700001vMS1gCAG?language=en_US

 

 

 

BR

Dennis

2 replies

dennis.pflug
Level 10
  • Level 10
  • Answer
  • April 4, 2024

Hi Julia,

 

have you tried it this way?

 

This can be used within Action Flows: 

 

formatNumber (number; decimalPOINTS; [decimalSeparator]; [thousandsSeparator])

Returns a number in the requested format. Decimal point is `,` by default, Thousands separator is `.` by default.

 

formatNumber( 123456789 ; 2 ; , ; . )

 

= 123.456.789,00

 

Using Number Format within Analyses / Views I think it is not possible doing this by using the Format feature. Here the thounsandsSeparator is everytime a comma and the decimalSeparator is everytime a dot.

 

https://www.celopeers.com/s/feed/0D50700001vMS1gCAG?language=en_US

 

 

 

BR

Dennis


julia.bauer
Level 9
Forum|alt.badge.img+6
  • Author
  • Level 9
  • April 5, 2024

Thank you Dennis! I'm working on a view and I thought I'm overseeing a syntax but it seems like it does not work yet.

 

Best regards,

Julia Bauer