+ Reply to Thread
Results 1 to 6 of 6

Summary sheet increment

  1. #1
    Registered User
    Join Date
    08-21-2013
    Location
    Doncaster, England
    MS-Off Ver
    Excel 2003
    Posts
    2

    Summary sheet increment

    Hi,

    I'm pretty new to the world of Excel and still very much finding my way. I could use some help on the following formula. I am creating a summary sheet that provides an overview of 80 other sheets. In the summary sheet I would like to take this formula and drag it down with the sheet numbers increasing, but when i drag it down the sheet number stays the same, leaving me to manually edit.

    =IF(Sheet2!$B$6="","",Sheet2!$B$6)


    When dragged down i would like it to read;

    =IF(Sheet2!$B$6="","",Sheet2!$B$6)
    =IF(Sheet3!$B$6="","",Sheet3!$B$6)
    =IF(Sheet4!$B$6="","",Sheet4!$B$6)


    Hope this makes sense to someone....

  2. #2
    Registered User
    Join Date
    08-15-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: Summary sheet increment

    What you want to do is use a "helper cell column" with the values 1,2,3,4... in A1,A2,A3,A4...

    From there, you will use the INDIRECT function

    For example:

    =IF(INDIRECT("Sheet" & A2 & "!$B$6")="","", INDIRECT("Sheet" & A2 & "!$B$6")

    Let me know if that takes care of it

  3. #3
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Summary sheet increment

    This is with rolling sheet number:

    =IF(INDIRECT("Sheet"&ROW(A2)&"!"&"B6")="","",INDIRECT("Sheet"&ROW(A2)&"!"&"B6"))
    If you like my answer please click on * Add Reputation
    Don't forget to mark threads as "Solved" if your problem has been resolved

    "Nothing is so firmly believed as what we least know."
    --Michel de Montaigne

  4. #4
    Registered User
    Join Date
    08-21-2013
    Location
    Doncaster, England
    MS-Off Ver
    Excel 2003
    Posts
    2

    Re: Summary sheet increment

    Indirect function worked a treat...

    Thanks guys..!

  5. #5
    Forum Guru AlKey's Avatar
    Join Date
    07-20-2009
    Location
    Lakeland, FL USA
    MS-Off Ver
    Microsoft Office 2010/ Office 365
    Posts
    8,903

    Re: Summary sheet increment

    You're Welcome. Don't forget to thank those who helped by clicking on Add Reputation *

  6. #6
    Registered User
    Join Date
    08-15-2013
    Location
    Canada
    MS-Off Ver
    Excel 2010
    Posts
    16

    Re: Summary sheet increment

    You bet, welcome!

+ 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. [SOLVED] Summary sheet - copy cell contents from multiple sheets to one summary sheet
    By jsmity in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-21-2013, 10:32 AM
  2. Create a summary from multiple sheets on a master/summary sheet
    By detribus in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 09-07-2012, 08:04 PM
  3. Populate summary sheet (insert & index rows from info in columns on another sheet)
    By DerbysGal in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-03-2011, 01:54 PM
  4. Increment letter on different sheet
    By drchris in forum Excel General
    Replies: 2
    Last Post: 09-22-2010, 09:05 AM
  5. count summary in Summary Sheet
    By joeBite in forum Excel - New Users/Basics
    Replies: 3
    Last Post: 01-04-2007, 03:55 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