Have a CSV file
| Date | Count of Orders | Category | Amount | Currency |
| 01-Jan-24 | 2 | Shoes | 100 | USD |
| Date | Order Number | Amount | | |
| 01-Jan-24 | 1001 | 50 | | |
The above data structure is an output of Altreyx Workflow and when exported to csv with delimiters is as below:
Header Row: Date;Count of Orders; Category; Amount; Currency
Row 3: Date;Order Number; Amount;"";"";
How to exlude the last 2 delimiters while exporting the data
Expected CSV Output
Header Row: Date;Count of Orders; Category; Amount; Currency
Row 3: Date;Order Number; Amount
Find and Replace does not seem to work.