I create a *.csv file, but when I open it using Microsoft.Office.Interop.Excel , its formatting is incorrect due to ignoring the delimiter ; .
excelWorkbook = excelApp.Workbooks.Open(workbookPath, 0, false,5,"","", false, Excel.XlPlatform.xlWindows, "", true, false, 0, true, false, false);
What parameter should Workbooks.Open be changed?
Thanks for your suggestions.
source share