I have a Text file that I have imported via FLAT ASCII file.
The text file has invoice prices that are listed in the following format (below) because they are European invoices.
10000,00
I need the output to form as
10,000.00
I have used a formula to replace ',' with '.' however I cannot add in the thousand delimiter. I have tried using ToString([original_value], 2, 1) formula but have had no success. Any ideas or help would be appreciated.