How to convert string with comma separated value

I have input excel file contains amount column values like 1234.56 or 1234.00 or 1234 or 1,000.99 etc… any random values

I want to convert any amount into ‘1,234.56 Cr.’ this format i.e. amount with comma separated with end with Cr…

how can I implement this logic.

Hi @Anil_Potekar

give a try with the following
image

Double.Parse(strInput).ToString("#,##0.00") + " Cr."

Regards

1 Like

Hi @Anil_Potekar
Try this.
image


Sample Workflow
Format.xaml (5.5 KB)

2 Likes

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.