Need Help on Exporting Excel Sheet as CSV format

spycein

Board Regular
Joined
Mar 8, 2014
Messages
135
Office Version
  1. 365
Platform
  1. Windows
Hello Everyone,
Need your help to export custom worksheets of a workbook as a separate CSV file.
For example, I have 7 worksheets in my workbook, out of which I need to export only 2 sheets only. So, I need a macro which would prompt me to select sheet/sheets to export and select a folder to save the CSV files.
Thank you so much in advance.
Best Regards,
Shib
 

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
VBA Code:
Sub ExportCSVs()
Dim Message As String
Dim Title As String
Dim Default As String
Dim Response As String
Dim ExCSVArr As Variant
Dim ExCSVLB As Integer
Dim ExCSVUB As Integer
Dim ExLoop As Integer
Dim FldrPicker As FileDialog
Dim myFolder As String
Dim ShtNum As Integer

Message = "Enter sheet numbers to export followed by a comma ( 2,5,7"    ' Set prompt.
Title = "Export Sheets selection"    ' Set title.
Default = ""    ' Set default.
' Display message, title, and default value.
Response = InputBox(Message, Title, Default)


If Trim(Response) = "" Then
    MsgBox "No sheets selected", vbInformation, Title
Else
    'Trim string to array
    
    ExCSVArr = Split(Response, ",")
    ExCSVLB = LBound(ExCSVArr)
    ExCSVUB = UBound(ExCSVArr)
    ' Select Folder to Save to with Dialog Box
    Set FldrPicker = Application.FileDialog(msoFileDialogFolderPicker)
    
    With FldrPicker
      .Title = "Select A Target Folder"
      .AllowMultiSelect = False
        If .Show <> -1 Then 'Check if user clicked cancel button
            MsgBox "No folder path selected.", vbCritical, Title
            Exit Sub
        Else
            myFolder = .SelectedItems(1) & "\"
        End If
    End With
    ' Write sheets
    For ExLoop = ExCSVLB To ExCSVUB
        ShtNum = 0
        If IsNumeric(ExCSVArr(ExLoop)) = True Then ' Check if a number
            ShtNum = CInt(ExCSVArr(ExLoop))
            If ShtNum > 0 And ShtNum < Worksheets.Count Then ' Check that sheet number is valid
                ' Switch to sheet
                Sheets(CInt(ExCSVArr(ExLoop))).Select
                ' Export sheet as CSV
                ActiveWorkbook.SaveAs Filename:=myFolder & Sheets(CInt(ExCSVArr(ExLoop))).Name & ".csv", FileFormat:= _
                  xlCSV, CreateBackup:=False
            End If
        End If
    Next ExLoop
End If
End Sub
 
Upvote 0
Solution
VBA Code:
Sub ExportCSVs()
Dim Message As String
Dim Title As String
Dim Default As String
Dim Response As String
Dim ExCSVArr As Variant
Dim ExCSVLB As Integer
Dim ExCSVUB As Integer
Dim ExLoop As Integer
Dim FldrPicker As FileDialog
Dim myFolder As String
Dim ShtNum As Integer

Message = "Enter sheet numbers to export followed by a comma ( 2,5,7"    ' Set prompt.
Title = "Export Sheets selection"    ' Set title.
Default = ""    ' Set default.
' Display message, title, and default value.
Response = InputBox(Message, Title, Default)


If Trim(Response) = "" Then
    MsgBox "No sheets selected", vbInformation, Title
Else
    'Trim string to array
   
    ExCSVArr = Split(Response, ",")
    ExCSVLB = LBound(ExCSVArr)
    ExCSVUB = UBound(ExCSVArr)
    ' Select Folder to Save to with Dialog Box
    Set FldrPicker = Application.FileDialog(msoFileDialogFolderPicker)
   
    With FldrPicker
      .Title = "Select A Target Folder"
      .AllowMultiSelect = False
        If .Show <> -1 Then 'Check if user clicked cancel button
            MsgBox "No folder path selected.", vbCritical, Title
            Exit Sub
        Else
            myFolder = .SelectedItems(1) & "\"
        End If
    End With
    ' Write sheets
    For ExLoop = ExCSVLB To ExCSVUB
        ShtNum = 0
        If IsNumeric(ExCSVArr(ExLoop)) = True Then ' Check if a number
            ShtNum = CInt(ExCSVArr(ExLoop))
            If ShtNum > 0 And ShtNum < Worksheets.Count Then ' Check that sheet number is valid
                ' Switch to sheet
                Sheets(CInt(ExCSVArr(ExLoop))).Select
                ' Export sheet as CSV
                ActiveWorkbook.SaveAs Filename:=myFolder & Sheets(CInt(ExCSVArr(ExLoop))).Name & ".csv", FileFormat:= _
                  xlCSV, CreateBackup:=False
            End If
        End If
    Next ExLoop
End If
End Sub
Thank you so much @nemmi69 for your help. The code works well until sheet number 7. If i put 8 then nothing happens.
Could you please help me on this.
Best Regards,
 
Upvote 0
Are there 8 sheets? Worksheets.Count stops numbers being used that are more than the actual number of sheets.
 
Upvote 0
VBA Code:
Sub ExportCSVs()
Dim Message As String
Dim Title As String
Dim Default As String
Dim Response As String
Dim ExCSVArr As Variant
Dim ExCSVLB As Integer
Dim ExCSVUB As Integer
Dim ExLoop As Integer
Dim FldrPicker As FileDialog
Dim myFolder As String
Dim ShtNum As Integer

Message = "Enter sheet numbers to export followed by a comma ( 2,5,7"    ' Set prompt.
Title = "Export Sheets selection"    ' Set title.
Default = ""    ' Set default.
' Display message, title, and default value.
Response = InputBox(Message, Title, Default)


If Trim(Response) = "" Then
    MsgBox "No sheets selected", vbInformation, Title
Else
    'Trim string to array
   
    ExCSVArr = Split(Response, ",")
    ExCSVLB = LBound(ExCSVArr)
    ExCSVUB = UBound(ExCSVArr)
    ' Select Folder to Save to with Dialog Box
    Set FldrPicker = Application.FileDialog(msoFileDialogFolderPicker)
   
    With FldrPicker
      .Title = "Select A Target Folder"
      .AllowMultiSelect = False
        If .Show <> -1 Then 'Check if user clicked cancel button
            MsgBox "No folder path selected.", vbCritical, Title
            Exit Sub
        Else
            myFolder = .SelectedItems(1) & "\"
        End If
    End With
    ' Write sheets
    For ExLoop = ExCSVLB To ExCSVUB
        ShtNum = 0
        If IsNumeric(ExCSVArr(ExLoop)) = True Then ' Check if a number
            ShtNum = CInt(ExCSVArr(ExLoop))
            If ShtNum > 0 And ShtNum < Worksheets.Count Then ' Check that sheet number is valid
                ' Switch to sheet
                Sheets(CInt(ExCSVArr(ExLoop))).Select
                ' Export sheet as CSV
                ActiveWorkbook.SaveAs Filename:=myFolder & Sheets(CInt(ExCSVArr(ExLoop))).Name & ".csv", FileFormat:= _
                  xlCSV, CreateBackup:=False
            End If
        End If
    Next ExLoop
End If
End Sub
Issue got sorted.. Thank you so much.
 
Upvote 0

Forum statistics

Threads
1,214,812
Messages
6,121,699
Members
449,048
Latest member
81jamesacct

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top