+ Reply to Thread
Results 1 to 16 of 16

summing a value across multiple sheets

  1. #1
    Registered User
    Join Date
    12-19-2021
    Location
    romsey, england
    MS-Off Ver
    version 2111
    Posts
    8

    Smile summing a value across multiple sheets

    I have 52 sheets with a value against a name. For each name I need to add all the values in each sheet.
    The names are in column A and the values to sum are in column T. The name criteria is in a summary sheet.
    e.g
    sheet 1
    A T
    smith £300
    taylor £200
    jones £100
    sheet 2
    A T
    Smith £0
    taylor £40
    jones £1000
    sheet 3
    A T
    Smith £242
    jones £33

  2. #2
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,725

    Re: summing a value across multiple sheets

    Welcome to the forum.

    There are instructions at the top of the page explaining how to attach your sample workbook.

    A good sample workbook has just 10-20 rows of representative data that has been desensitised. It also has expected results mocked up, relevant cells highlighted and a few explanatory notes.

    Administrative Note:

    Members will tailor the solutions they offer to the version of Office (Excel) that you have. Please check that your forum profile is up-to-date in this respect - 2111 is a release number, not the actual version you have. If you aren't sure, in Excel go to File | Account and report what it says below the MS logo at the top of that page. If your version is for Mac, please also state this. Thanks.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  3. #3
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,178

    Re: summing a value across multiple sheets

    In Sheet4

    Column A (from row 2)

    list of Names

    in B2

    =SUMPRODUCT(SUMIF(INDIRECT("'"&Sheets&"'!A2:A100"),A2,INDIRECT("'"&Sheets&"'!T2:T100")))

    Add Named Range "Sheets" for tab names
    Attached Files Attached Files
    Last edited by JohnTopley; 12-19-2021 at 12:42 PM.
    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

  4. #4
    Registered User
    Join Date
    12-19-2021
    Location
    romsey, england
    MS-Off Ver
    version 2111
    Posts
    8
    Quote Originally Posted by JohnTopley View Post
    In Sheet4

    Column A (from row 2)

    list of Names

    in B2

    =SUMPRODUCT(SUMIF(INDIRECT("'"&Sheets&"'!A2:A100"),A2,INDIRECT("'"&Sheets&"'!T2:T100")))

    Add Named Range "Sheets" for tab names
    John

    My sheets aren’t generically named but on a varying date.
    Can I still use xx:yy after selecting all tabs?

  5. #5
    Forum Moderator Glenn Kennedy's Avatar
    Join Date
    07-08-2012
    Location
    Digital Nomad... occasionally based in Ireland.
    MS-Off Ver
    O365 (PC) V 2403
    Posts
    44,023

    Re: summing a value across multiple sheets

    What, exactly, do you mean by:

    My sheets aren’t generically named but on a varying date
    Glenn




    None of us get paid for helping you... we do this for fun. So DON'T FORGET to say "Thank You" to all who have freely given some of their time to help YOU.

    Temporary addition of accented to illustrate ongoing problem to the TT: L? fh?ile P?draig sona dhaoibh

  6. #6
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,178

    Re: summing a value across multiple sheets

    If you are doing the summation over a range of sheets, then just include the Sheet names in the named range "Sheets"

    With tabs below, this will be the "Sheets" list

    "ABC13", XYZ-67","Any_Name"

  7. #7
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,178

    Re: summing a value across multiple sheets

    If ALL the sheets had the same format i.e the name order is constant in the sheets then you could use

    =SUM(First:Last!T2)

    where First and Last tabs enclose sheets to the summed
    Attached Files Attached Files
    Last edited by JohnTopley; 12-19-2021 at 02:35 PM.

  8. #8
    Registered User
    Join Date
    12-19-2021
    Location
    romsey, england
    MS-Off Ver
    version 2111
    Posts
    8

    Re: summing a value across multiple sheets

    I have 52 sheets, 1 per week on varying dates, so named.
    here is an example of just 3
    Attached Files Attached Files

  9. #9
    Registered User
    Join Date
    12-19-2021
    Location
    romsey, england
    MS-Off Ver
    version 2111
    Posts
    8

    Re: summing a value across multiple sheets

    Attachment 760108
    hopefully this is readable ?

  10. #10
    Registered User
    Join Date
    12-19-2021
    Location
    romsey, england
    MS-Off Ver
    version 2111
    Posts
    8

    Re: summing a value across multiple sheets

    My sheets are named
    Jan 8, Feb 23, Mar 30, Dec 31

  11. #11
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,178

    Re: summing a value across multiple sheets

    You already have answers, including sample w/books (see posts #3 and #7)

  12. #12
    Registered User
    Join Date
    12-19-2021
    Location
    romsey, england
    MS-Off Ver
    version 2111
    Posts
    8

    Re: summing a value across multiple sheets

    Thanks John. Didn't work at IBM Hursley did you ?

  13. #13
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,178

    Re: summing a value across multiple sheets

    I did (many years ago!)

  14. #14
    Registered User
    Join Date
    12-19-2021
    Location
    romsey, england
    MS-Off Ver
    version 2111
    Posts
    8

    Re: summing a value across multiple sheets

    Thankyou, all ok now !

  15. #15
    Registered User
    Join Date
    12-19-2021
    Location
    romsey, england
    MS-Off Ver
    version 2111
    Posts
    8

    Re: summing a value across multiple sheets

    I was your PDM (alan N.)

  16. #16
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2404 (Windows 11 22H2 64-bit)
    Posts
    80,725

    Re: summing a value across multiple sheets

    Administrative Note @ Alan N.:

    Members will tailor the solutions they offer to the version of Office (Excel) that you have. Please check that your forum profile is up-to-date in this respect - 2111 is a release number, not the actual version you have. If you aren't sure, in Excel go to File | Account and report what it says below the MS logo at the top of that page. If your version is for Mac, please also state this. Thanks.

+ 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. Conditional summing across multiple sheets
    By green4000 in forum Excel General
    Replies: 5
    Last Post: 11-25-2017, 01:32 AM
  2. Summing over multiple sheets
    By thespasticone in forum Excel Charting & Pivots
    Replies: 2
    Last Post: 07-18-2016, 01:19 AM
  3. Summing across multiple sheets
    By bqheng in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 12-15-2014, 11:33 PM
  4. Summing across multiple sheets.
    By Calugasi in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 02-28-2014, 05:45 PM
  5. Summing across multiple sheets
    By markvdh in forum Excel General
    Replies: 19
    Last Post: 02-16-2011, 10:34 AM
  6. Summing Across Multiple Sheets
    By nawas in forum Excel General
    Replies: 2
    Last Post: 12-01-2009, 08:17 AM
  7. [SOLVED] Summing Across Multiple Sheets
    By Liam in forum Tips and Tutorials
    Replies: 3
    Last Post: 01-15-2007, 05:30 PM

Tags for this Thread

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