Results 1 to 9 of 9

Summary Sheet

Threaded View

  1. #1
    Registered User
    Join Date
    07-02-2013
    Location
    Bermuda
    MS-Off Ver
    Excel 2007
    Posts
    5

    Summary Sheet

    Good Day,

    I have to build a summary sheet with multiple columns, one with sheet name, the value from each sheet in B35, & B36. My workbook has 465 sheets with another 40 or so to add. I used this macro to build a list, which gave me each sheet name but for the life of me I can't figure out how to and the columns I need for the summary of values.

    Private Sub ListSheets()
    'list of sheet names starting at A1
    Dim Rng As Range
    Dim i As Integer
    Worksheets.Add
    Set Rng = Range("A1")
    For Each Sheet In ActiveWorkbook.Sheets
    Rng.Offset(i, 0).Value = Sheet.Name
    i = i + 1
    Next Sheet
    End Sub
    Thanks for any help out here, oh and by the way I didn't write the one above and just started working with macros so I'm still kind of clueless. Todd
    Last edited by arlu1201; 07-04-2013 at 10:09 AM.

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