Outlook Email - Number Formatting

had an excel file and generated the table as html table on the outlook email, but how we format the number with comma separator?

Estimated Amount
2706.72
10.02

So, Are you looking 2706,72 like this?

Will be like 2,706.72

@jerry.kohzl Use this below code to convert “2706.72” to “2,706.72”,
Convert.ToDecimal(“2706.72”).ToString(“#,##0.00”).

First convert the “Estimated Amount” in excel with this code and then convert excel file to html table.

Hope this may help you :slight_smile: