Created
April 20, 2020 19:00
-
-
Save nicolasguzca/8b603efd225082884c95b95769afe8b6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub ExportSheetsToCSV() | |
Dim xWs As Worksheet | |
Dim xcsvFile As String | |
For Each xWs In Application.ActiveWorkbook.Worksheets | |
xWs.Copy | |
xcsvFile = CurDir & "\" & xWs.Name & ".csv" | |
Application.ActiveWorkbook.SaveAs Filename:=xcsvFile, _ | |
FileFormat:=xlCSV, CreateBackup:=False | |
Application.ActiveWorkbook.Saved = True | |
Application.ActiveWorkbook.Close | |
Next | |
End Sub | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment