+ Reply to Thread
Results 1 to 10 of 10

Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

  1. #1
    Registered User
    Join Date
    10-15-2017
    Location
    kanata, ontario, canada
    MS-Off Ver
    MS 365
    Posts
    37

    Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    I have a spreadsheet that needs to be done every friday.
    I got it to create from the template, rename the worksheet to date and userid
    dropdown values validation for each Friday with Yes or No


    The issue:
    now I'm trying to do a rollup for those spreadsheet as to, how many 'Yes', 'No' and nothing.
    I have been trying but not getting any positive results, or getting errors.

    Can anyone help me.

    Thanks in advance

    Maurice
    Attached Files Attached Files

  2. #2
    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,053

    Re: Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    Your request is ambiguous, as the templates are blank. We cannot tell if the items 1-20 are always present and in ascending order. Please mock up a few rows on each sheet and show your desired results. Then re-post the attachment IN THIS THREAD.
    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

  3. #3
    Registered User
    Join Date
    10-15-2017
    Location
    kanata, ontario, canada
    MS-Off Ver
    MS 365
    Posts
    37

    Re: Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    You're right.

    Added data to the file.

    Thanks you

  4. #4
    Registered User
    Join Date
    10-15-2017
    Location
    kanata, ontario, canada
    MS-Off Ver
    MS 365
    Posts
    37

    Re: Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    the desire result would be in the roll up tab, that it goes to the individual report tab and does a count of how many yes, no and those that are not answered.

    been trying for a week to figure this out and nothing but errors.

    thank you for your help

  5. #5
    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,830

    Re: Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    There are #REF! errors - is this meant to be referencing another workbook?
    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.

  6. #6
    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,053

    Re: Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    Use variants of this formula:

    =IF($B4="","",SUMPRODUCT(COUNTIF(INDIRECT("'"&WS_Lst&"'!"&ADDRESS(ROWS($1:1)+3,COLUMNS($A:$A)+2,3)),"Yes")))


    Where WS_List is a Named range (CTRL F3) which adjusts to include all the sheets listed in Sheetlist

  7. #7
    Forum Expert tim201110's Avatar
    Join Date
    10-23-2011
    Location
    Russia
    MS-Off Ver
    2016, 2019
    Posts
    2,357

    Re: Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    different approach (once again and with little hope)
    you can make all your reports in ws tit
    ws print is for printing and saving as pdf
    file has very simple structure, and you do not need to use compicated formulas
    Attached Files Attached Files

  8. #8
    Registered User
    Join Date
    10-15-2017
    Location
    kanata, ontario, canada
    MS-Off Ver
    MS 365
    Posts
    37

    Re: Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    the formula in the roll up sheets were my attempt to get the desire results.
    left it in there so you can see what I've attempted

  9. #9
    Registered User
    Join Date
    10-15-2017
    Location
    kanata, ontario, canada
    MS-Off Ver
    MS 365
    Posts
    37

    Re: Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    Thanks Glenn

    Exactly what I was looking for.

    Now, need to understand what you've done.

  10. #10
    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,053

    Re: Excel - multiple dynamic names sheets and want to roll-up values from multiple sheets

    =IF($B4="","",SUMPRODUCT(COUNTIF(INDIRECT("'"&WS_Lst&"'!"&ADDRESS(ROWS($1:1)+3,COLUMNS($A:$A)+2,3)),"Yes")))

    You could also use:

    =IF($B4="","",SUMPRODUCT(COUNTIF(INDIRECT("'"&WS_Lst&"'!C4"),"Yes")))

    and change the C4 manually to C5
    C6, etc as you drag it down. the ADDRESS(ROWS($1:1)+3,COLUMNS($A:$A)+2,3)
    bit does that for you.

    Basically the formula boils down to:

    =SUMPRODUCT(COUNTIF(INDIRECT("'"&WS_Lst&"'!C4"),"Yes")

    Red: look at C4 on every sheet in the worksheet list
    Orange: count 1, if it says Yes
    Green add up the counts to give you an answer.

    If you encounter problems, just shout.





    If that takes care of your original question, please select "Thread Tools" from the menu link above and mark this thread as SOLVED.

    It'd also be appreciated if you were to click the Add Reputation button at the foot of any of the posts of all members who helped you reach a solution.

+ 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] Copy Paste From Rawdata Sheets to Multiple Sheets Based on Sheet names
    By farrukh in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 07-16-2017, 11:01 PM
  2. VBA to Create a Roll Up Summary Sheet for multiple sheets with variable amounts of data
    By steelersdmw in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 01-29-2016, 02:56 PM
  3. Dynamic Chart based on multiple excel sheets
    By talk2meearly in forum Excel Charting & Pivots
    Replies: 0
    Last Post: 08-07-2013, 01:01 AM
  4. [SOLVED] Highlighting the same cell in one workbook with multiple sheets with various sheets names.
    By DanielRay in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-14-2013, 01:50 PM
  5. Merge multiple excels with multiple sheets in a master excel with multiple sheets
    By marchi in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-15-2012, 10:37 AM
  6. Excel Dynamic Chart from multiple sheets
    By wamufti in forum Excel Charting & Pivots
    Replies: 1
    Last Post: 04-07-2011, 02:19 AM
  7. How excel handles names in multiple sheets
    By dmartindale in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-13-2007, 01:58 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