+ Reply to Thread
Results 1 to 3 of 3

Applying Macro to all worksheets (tabs)

Hybrid View

  1. #1
    Registered User
    Join Date
    07-16-2012
    Location
    London
    MS-Off Ver
    Excel 2003
    Posts
    2

    Applying Macro to all worksheets (tabs)

    Hi,

    I have written a macro to sum column N in a specified worksheet. But I need the code to apply the macro to all the worksheets in my workbook.
    I have been searching how to do this to no avail. Can anyone help?

    Here is my code:

    Sub Sum()
    
    Dim LR As Long
    With Sheets("UNIVERSITY OF HELSINKI")
        LR = .Range("N" & Rows.Count).End(xlUp).Row
        .Range("N" & LR + 1).Value = WorksheetFunction.Sum(.Range("N1:N" & LR))
    End With
    End Sub
    Last edited by Cutter; 07-16-2012 at 12:13 PM. Reason: Added code tags

  2. #2
    Forum Guru MarvinP's Avatar
    Join Date
    07-23-2010
    Location
    Woodinville, WA
    MS-Off Ver
    Office 365
    Posts
    16,289

    Re: Applying Macro to all worksheets (tabs)

    Hi CBailey and welcome to the forum.

    You need to learn about worksheet indexes and worksheets.count. http://msdn.microsoft.com/en-us/libr...ffice.11).aspx
    Try this..
    Option Explicit
    
    Sub NColumSummer()
     
    Dim LastRow As Long
    Dim ShtCtr As Long
    
    For ShtCtr = 1 To Worksheets.Count
        With Sheets(ShtCtr)
            LastRow = .Range("N" & Rows.Count).End(xlUp).Row
            .Range("N" & LastRow + 1).Value = WorksheetFunction.Sum(.Range("N1:N" & LastRow))
        End With
    Next ShtCtr
    
    End Sub
    Also - you should never name a sub a normal function that is in Excel. That is - you named your subroutine "Sum" but there is already a Sum() function.

    Also #2 - You should edit your original post and put code marks around the code so it looks like mine. You select the code text and then click on the "#" icon that will put code tags around it and look like mine. It is simply easier to read and by the forum rules.
    Last edited by MarvinP; 07-16-2012 at 10:35 AM.
    One test is worth a thousand opinions.
    Click the * Add Reputation below to say thanks.

  3. #3
    Registered User
    Join Date
    07-16-2012
    Location
    London
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Applying Macro to all worksheets (tabs)

    Thanks MarvinP,
    That works perfectly.
    Thread pointers noted.
    Thanks!
    Chris.

+ Reply to Thread

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