

Super Filter (save and apply filter schemes to other sheets) Advanced Sort by month/week/day, frequency and more Special Filter by bold, italic.Extract Text, Add Text, Remove by Position, Remove Space Create and Print Paging Subtotals Convert Between Cells Content and Comments.Exact Copy Multiple Cells without changing formula reference Auto Create References to Multiple Sheets Insert Bullets, Check Boxes and more.Select Duplicate or Unique Rows Select Blank Rows (all cells are empty) Super Find and Fuzzy Find in Many Workbooks Random Select.Merge Cells/Rows/Columns without losing Data Split Cells Content Combine Duplicate Rows/Columns.Super Formula Bar (easily edit multiple lines of text and formula) Reading Layout (easily read and edit large numbers of cells) Paste to Filtered Range.Reuse: Quickly insert complex formulas, charts and anything that you have used before Encrypt Cells with password Create Mailing List and send emails.The Best Office Productivity Tools Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80% VBA: Convert CSV files to XLSX Sub CSVtoXLS()ĪctiveWorkbook.SaveAs Replace(xSPath & xCSVFile, ".csv", ".xlsx", vbTextCompare), xlWorkbookDefault Tip: If you want to convert CSV files to XLSX files, you use below VBA code.

Click OK, all the CSV files in the selected folder have been converted to XLS files in it. In the popping out dialog, select the specified folder containing the CSV files you want to convert. Workbooks.Open Filename:=xSPath & xCSVFileĪctiveWorkbook.SaveAs Replace(xSPath & xCSVFile, ".csv", ".xls", vbTextCompare), xlNormalģ. If Right(xSPath, 1) "\" Then xSPath = xSPath + "\"Īpplication.StatusBar = "Converting: " & xCSVFile Set xFd = Application.FileDialog(msoFileDialogFolderPicker) Then paste below macro code to the Module script, and press F5 key to run the code. Note: Make sure all CSV files you want to convert are closed.Ģ. Enable a new workbook, press Alt + F11 keys to open Microsoft Visual Basic for Applications window, and click Insert > Module. To convert multiple CSV files from one folder to XLS(X) files, you can do as below steps:ġ. Here I introduce a macro code to quickly batch convert all CSV files to XLS(x) files from a folder.īatch convert CSV files to XlS(X) files with macro code However, to convert multiple CSV files to XLS or XLSX files from a folder is time-consuming by saving one by one manually. To convert a CSV file to XlS or XLSX file is very easy for you by applying the Save As feature. How to batch convert multiple CSV files to XLS(X) files in Excel?
