Hi I am working on Bank statement csv format,
csv file has a Comma delimiter & in amount column contains comma instead of point for decimal number (& its bank format, fixed) sample csv file - 20201008_USD.zip (597 Bytes)
Any solution for this
Sometimes it runs but all data is in a single column,
sometimes it gives error Read CSV: The CSV file format for is invalid.
it will work if you do not open csv file manually and read it directly inside your code with read csv file activity. And another solution is you read it as a string then get values line by line then separate data with “,” then create data table.
Please see the attached workflow. It will return a Datatable which contain data starting from Remitter/Beneficiary till end. I have added log messages in the workflow so that you can make it dynamic according to your requirements.