Results 1 to 4 of 4

Macro that should create csvs of all the sheets of a workbook doesn't work! help!

Threaded View

  1. #3
    Valued Forum Contributor
    Join Date
    05-07-2012
    Location
    USA
    MS-Off Ver
    Excel 2007
    Posts
    354

    Re: Macro that should create csvs of all the sheets of a workbook doesn't work! help!

    How about this one?

    Option Explicit   'good programming practice
    
    Sub Make_New_Books()
    
    Dim w As Worksheet
    Dim FileExtStr As String
    
    Application.ScreenUpdating = False
    Application.DisplayAlerts = False
    
    
    On Error GoTo ErrorHandler  'error handling
    
    'following is not used and therefore not needed
    'FileExtStr = ".csv": FileFormatNum = 6
    
    For Each w In ThisWorkbook.Worksheets
        
        w.Copy
        
        
        With ActiveWorkbook
            .SaveAs Filename:="C:\8350\8350_" & w.Name, FileFormat:=xlCSV
            .Close
        End With
    Next w
    
    'Normal exit - exit here if no error
    ErrorExit:
        Application.DisplayAlerts = True
        Application.ScreenUpdating = True
        Exit Sub
    
    'If error display them and then exit through above code to reset alerts and screenupdating
    ErrorHandler:
        MsgBox Err.Number & ": " & Err.Description
        GoTo ErrorExit
    
    End Sub
    Please ensure that you have a directory named '8350' under C:\
    Last edited by vandan_tanna; 06-15-2012 at 12:49 PM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1