+ Reply to Thread
Results 1 to 3 of 3

Looping through worksheets

Hybrid View

  1. #1
    Registered User
    Join Date
    08-18-2008
    Location
    Australia
    Posts
    8

    Looping through worksheets

    Hi there
    I’m trying to copy some data from each sheet in WorkbookA, except for the first sheet which is called “Menu”, into a single sheet in WorkbookB. I’m trying to loop through the worksheets in WorkbookA but don’t know how to exclude the first sheet. The code for copying and pasting works fine. It’s just the looping (as always) I’m having trouble with.

    The code I’m trying is:
    Dim wb As Workbook
        Dim ws As Worksheet
        Set wb = Workbooks("Per02.xls")
    
    
        For Each ws In wb.Worksheets
        If Not Workbooks("Per02.xls").Worksheets("Menu") Then
    
    	Code to copy and paste
    
            End If
        Next ws
    
    End Sub
    This produces an error message ‘Object doesn’t support this property or method’ and debugging highlights the line:

    If Not Workbooks("Per02.xls").Worksheets("Menu") Then

    I know this code is incorrect but don’t know what to use. Assistance from this forum would be greatly appreciated.

    Many thanks

    Terkel
    Last edited by Leith Ross; 10-14-2008 at 03:35 AM. Reason: Corrected Code Tag placement for OP

  2. #2
    Forum Contributor
    Join Date
    05-21-2004
    Location
    UK
    Posts
    136
    Dim wb As Workbook
        Dim ws As Worksheet
        Set wb = Workbooks("Per02.xls")
    
    
        For Each ws In wb.Worksheets
        
            If ws.Name <> "Menu" Then
    
    	    Code to copy and paste
            End If
        Next ws
    End Sub

  3. #3
    Registered User
    Join Date
    08-18-2008
    Location
    Australia
    Posts
    8
    Hi XLD
    Thanks very much for your reply. Just to let you know that your code works fine but my code to loop through the worksheets is up the mud!. I'll post again but have run out of time for now and am away for 2 weeks.

    Terkel

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Concatenate across multiple worksheets based on variable
    By rpatton1 in forum Excel Formulas & Functions
    Replies: 0
    Last Post: 10-09-2008, 03:35 PM
  2. Automatically format multiple worksheets
    By Kez in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-29-2008, 08:25 AM
  3. Looping through worksheets in a workbook to pull data
    By fecurtis in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 05-02-2008, 01:40 PM
  4. Selecting worksheets in a workbook based on criteria
    By josnah in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-13-2008, 10:47 AM
  5. Mashing three worksheets together.
    By Thanos in forum Excel General
    Replies: 2
    Last Post: 01-17-2007, 02:34 PM

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