+ Reply to Thread
Results 1 to 11 of 11

Results Summarizing Across Multiple Sheets

Hybrid View

bishoonline Results Summarizing Across... 05-30-2012, 01:51 PM
NBVC Re: Results Summarizing... 05-30-2012, 01:58 PM
bishoonline Re: Results Summarizing... 05-30-2012, 03:05 PM
NBVC Re: Results Summarizing... 05-30-2012, 03:17 PM
bishoonline Re: Results Summarizing... 05-30-2012, 04:14 PM
NBVC Re: Results Summarizing... 05-30-2012, 04:32 PM
bishoonline Re: Results Summarizing... 05-30-2012, 04:59 PM
NBVC Re: Results Summarizing... 05-30-2012, 05:06 PM
bishoonline Re: Results Summarizing... 05-30-2012, 05:11 PM
NBVC Re: Results Summarizing... 05-30-2012, 05:20 PM
bishoonline Re: Results Summarizing... 05-30-2012, 05:31 PM
  1. #1
    Registered User
    Join Date
    10-19-2011
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    7

    Results Summarizing Across Multiple Sheets

    Hi All…

    As per the attached file, the “Aquarius Data” sheet contains the Guests Comments about their experience in this specific restaurant for a specific meal, my target is to summarize all the results or each restaurant and each meal (the example I am listing is for 1 restaurant only which is Aquarius)…. I am showing also the results I need in the “Aquarius Summary” sheet.

    Thank you.
    Attached Files Attached Files

  2. #2
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Results Summarizing Across Multiple Sheets

    In you summary sheet, that would hopefully be organized like the individual sheets, you would need simple sum formulas.

    e.g. =SUM('Aquarius Summary:Polaris Summary'!B3)

    this will sum cell B3 in all sheets between and inclusive of the first sheet, Aquarius Summary and the last sheet, Polaris Summary...
    Where there is a will there are many ways.

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below left corner

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

  3. #3
    Registered User
    Join Date
    10-19-2011
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: Results Summarizing Across Multiple Sheets

    Thank you NBVC but I honestly didnt understand your approach... where this can be useful for my issue ?? can you put an example on my file...

  4. #4
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Results Summarizing Across Multiple Sheets

    This is my interpretation of your requirement.

    I assume you have a data sheet for each restaurant and then a summary for each restaurant.

    I add a summary sheet for all restaurants at the end, with the same layout as the individual restaurant summary sheets

    I add simple formula, in B3 of Total Summary:

    =SUM('Aquarius Summary:Polaris Summary'!B3)

    copied down and across. And similar in other tables below.

    Maybe I misinterpreted?
    Attached Files Attached Files

  5. #5
    Registered User
    Join Date
    10-19-2011
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: Results Summarizing Across Multiple Sheets

    Hi NBVC, I think there is a misunderstanding, the Aquarius Summary sheet is filled manually by me just to show the results I need; getting the total summary will be fine using your approach, but how can I get the summary for each restaurant using formula.. here is the trick I need to find out...

  6. #6
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Results Summarizing Across Multiple Sheets

    Ok, I would add a helper column to column I, in the Aquarius Data sheet.

    Formula in I2:

    =INDEX(B3:B$63,MATCH("Restaurant",A3:A$63,0))&CHAR(10)&INDEX(B3:B$63,MATCH("Meal",A3:A$63,0))

    Then in B3 of the Aquarius Summary:

    =COUNTIFS('Aquarius Data'!$I:$I,$A$1,'Aquarius Data'!$C:$C,$A3,'Aquarius Data'!D:D,"Y")

    copied down and across first table.

    in other tables, change the $A$1 to top left corner cell of the table.

    copied down

    You can format the result cells to hide 0's, using Custom and entering Type: 0;-0;;@
    Attached Files Attached Files

  7. #7
    Registered User
    Join Date
    10-19-2011
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: Results Summarizing Across Multiple Sheets

    That was brilliant... but I modified the file to contain one restaurant in a sheet and I compared the manual results with the formulae ones... I highlighted the discrepancies in yellow... I would be grateful if your could have a final look on he attached file and do the final adjustment…

    Another 2 questions: why did you start from I2 which is looking from B3 (next cell)? This causing to have N/A in the last cells… and causing to have wrong data (like in I10 & I11 & I12)
    What do you mean by Char(10)? What is 10?

    thanks again for all your efforts.
    Attached Files Attached Files

  8. #8
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Results Summarizing Across Multiple Sheets

    you're right, let's try instead in I3:

    =INDEX(B2:B$51,MATCH("Restaurant",A2:A$51,0))&CHAR(10)&INDEX(B2:B$51,MATCH("Meal",A2:A$51,0))

    copied down.

    Note also, as I mentioned previously, in B13 of the summary you will need to change the $A$1 to $A$13

    e.g.

    =IF(COUNTIFS('Aquarius Data'!$I:$I,$A$13,'Aquarius Data'!$C:$C,$A15,'Aquarius Data'!D:D,"Y")=0,"",COUNTIFS('Aquarius Data'!$I:$I,$A$13,'Aquarius Data'!$C:$C,$A15,'Aquarius Data'!D:D,"Y"))
    copied down and across.

    The Char(10) is inserting the non-printable carriage return inputted in A1 of the Summary (it was inserted using ALT+ENTER.. which is Char(10))

  9. #9
    Registered User
    Join Date
    10-19-2011
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: Results Summarizing Across Multiple Sheets

    Yes that worked perfectly... but I51 gave N/A which I beleive it is fine and won't have any effect ??

  10. #10
    Forum Expert NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    34,898

    Re: Results Summarizing Across Multiple Sheets

    Yes, that won't affect it... but if you want it cleaner, try in I3:

    =IF(C3<>"",INDEX(B2:B$51,MATCH("Restaurant",A2:A$51,0))&CHAR(10)&INDEX(B2:B$51,MATCH("Meal",A2:A$51,0)),"")

    copied down.

  11. #11
    Registered User
    Join Date
    10-19-2011
    Location
    London
    MS-Off Ver
    Excel 2007
    Posts
    7

    Re: Results Summarizing Across Multiple Sheets

    Amazing.... I am speechless... I appreciate all your help... Thaaaaaaaaaaaaaaaaanks NBVC

+ 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