Results 1 to 5 of 5

Perform a macro on multiple worksheets

Threaded View

  1. #2
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Perform a macro on multiple worksheets

    Try this
    Option Explicit
    
    Sub Autonumber()
        Dim ws As Worksheet
        Dim LastRow As Long
    
        For Each ws In ThisWorkbook.Worksheets
            With ws
                LastRow = .Range("J65536").End(xlUp).Row
                .Range("A2").Formula = "=if(J2>0,row(A1),"""")"
                .Range("A2").AutoFill Destination:=.Range("A2:A" & LastRow), Type:=xlFillDefault
                .Range("A2", .Range("A2").End(xlDown)).Copy
                .Range("A2", .Range("A2").End(xlDown)).PasteSpecial (xlPasteValues)
            End With
        Next ws
    End Sub
    Last edited by royUK; 01-06-2011 at 03:43 PM.
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

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