Export Sheets as csv

howard

Well-known Member
Joined
Jun 26, 2006
Messages
6,589
Office Version
  1. 2021
Platform
  1. Windows
I have several sheet and have written code to export these to directory C:\data


I would like to mend the code to only export that sheets that has data in cell A1


Your assistance in this regard is most appreciated




Code:
 Sub ExportSheetsToCSV()
Application.DisplayAlerts = False
    Dim xWs As Worksheet
    Dim xcsvFile As String
    For Each xWs In Application.ActiveWorkbook.Worksheets
        xWs.Copy
        xcsvFile = "C:\data" & "\" & xWs.Name & ".csv"
        Application.ActiveWorkbook.SaveAs Filename:=xcsvFile, _
        FileFormat:=xlCSV, CreateBackup:=False
        Application.ActiveWorkbook.Saved = True
        Application.ActiveWorkbook.Close
    Next
    Close_Book
    Application.DisplayAlerts = True
    
End Sub
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Try:
Code:
Sub ExportSheetsToCSV()
 
    Dim xWs As Worksheet
    Const xcsvFile As String = "C:\data\@Name.csv"
     
    With Application
        .ScreenUpdating = False
        .DisplayAlerts = False
    End With
    
    For Each xWs In ActiveWorkbook.Worksheets
        With xWs
            If Len(.Cells(1, 1).Value) > 0 Then
                .Copy
                ActiveWorkbook.SaveAs FileName:=Replace(xcsvFile, "@Name", .Name), FileFormat:=xlCSV, CreateBackup:=False
                With ActiveWorkbook
                    .Saved = True
                    .ActiveWorkbook.Close False
                End With
            End If
        End With
    Next xWs
    Close_Book
    
    With Application
        .DisplayAlerts = True
        .ScreenUpdating = True
    End With
    
End Sub
 
Last edited:
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,915
Members
452,366
Latest member
TePunaBloke

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