Display thousand separator with 2 decimals

Hi!

I use the Reporting Engine and I have the following question.
How can I set a thousand separator for a decimal and display it 2 decimals?

My values for e.g. are: 16126,25 or 123456789,12
This is my code: <<[x.OrderValues.Sum(p => p.ItemValue)]>>

How can I format the sum values to 16.126,25 or 123.456.789,12 ?

Greetings
Malcolm84

@Malcolm84

You can format the output value with following format switch.
E.g. <<[ItemValue] : “#,##0.00”>>

We suggest you please read the following article. Hope this helps you.

@tahir.manzoor

Thank you for your answer. It works for me now! :slight_smile:

Greetings
Malcolm84