Hi, I am trying to open an excel file and extract the data into a dataset.
Using the ExportDataTable method I am able to build the dataset from the sheets in the workbook.
I need the data to be cleaned, removing msWord chars like 66 and 99 and cr and lf etc..
Is there a way to apply a regex to the data in the workbook prior to exporting or during export without having to iterate through every cell and manually apply the regex? There are 4 in total that I need to apply and I'm concerned about the performance of trying to do this manually.
I am working with workbooks containing 200 000 rows of 30 columns across 20 sheets.
Thank You.