I am trying to convert a amount with a format. For Example : I have a amount as 1900.00
the output i am expecting is 1,900.00. I tried using Format activity but i am not getting the expected output.
If the Amount is 1000000 then the output should be 10,00,000 but using the Format activity the output that i am getting is 1,000,000.
How do i convert it to the expected format?
Check this below code, formattedValue(variable as String data type) = CDbl("10000000").ToString("#,#.00", System.Globalization.CultureInfo.CreateSpecificCulture("hi-IN"))
Could you let us know if the activity mentioned by you was Format Cells Activity ? If so, was it configured in the below way. I am able to get the output in the required way using the below configuration.
Is it possible for you to use Format Cells Activity ? This would need for you to have the latest version in place having the Modern Design Experience enabled.
Thank you for the Advice. I was able to get the expected output by using the following syntax
CDbl(β10000000β).ToString(β#,#.00β, System.Globalization.CultureInfo.CreateSpecificCulture(βhi-INβ))