+ Reply to Thread
Results 1 to 11 of 11

Summarize and total data from another sheet

  1. #1
    Registered User
    Join Date
    04-19-2022
    Location
    Chicago, IL
    MS-Off Ver
    365
    Posts
    11

    Summarize and total data from another sheet

    Please see attached to demonstrate what I am working with.

    Using the Project Estimate sheet, I am trying to create a summary sheet.

    In column A of my sheet named "Summary", I need to search the set of data from the sheet named Project Estimate that lists position titles, and input 1 of each unique value. This will be a different set of data/role every time, so the Summary sheet can not be pre-populated with roles. It needs to read everything on the Project Estimate sheet, identify all of the unique roles, and then put 1 of each in a cell on the Summary sheet. The important thing to note is that it must only list the roles that start with " - ". So for example in column A, it needs to exclude Video Phase, Copy Editing, Creative Design, Design Development, Artwork and Project Management, and only will from the other cells that start with " - ". These will be in different rows every time as you can see from the other columns, so it needs to be based on the text/value, not the cell name/range.

    Then in column B of my sheet named "Summary, I need to total the numbers in Column B of the "Project Estimate" sheet next to each role.
    So in my sheet named "Summary", I have included 1 example. I would want this formula to be able to identify that Project Manager Senior has 30 hours across all the data in Project Estimate

    What would I need to input in my Summary sheet to get this to work?

    Thanks so much
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Summarize and total data from another sheet

    Re organise the data like I showed in the sheet Oeldere.

    After that a Pivot table.

    See the attached file.
    Notice my main language is not English.

    I appreciate it, if you reply on my solution.

    If you are satisfied with the solution, please mark the question solved.

    You can add reputation by clicking on the star * add reputation.

  3. #3
    Registered User
    Join Date
    04-19-2022
    Location
    Chicago, IL
    MS-Off Ver
    365
    Posts
    11

    Re: Summarize and total data from another sheet

    Hi, I appreciate this and it looks great but it will not meet my needs.

    1 - I cannot reorganize the data as it is coming directly from another software

    2 - I need the summary of hours in total for every phase - not per phase

  4. #4
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Summarize and total data from another sheet

    Try this VBA code on a copy of your data.

    After that a pivot table.

    See the attached file, sheet Output.

    The pivot table is in the sheet PT Oeldere

    Please Login or Register  to view this content.

  5. #5
    Registered User
    Join Date
    04-19-2022
    Location
    Chicago, IL
    MS-Off Ver
    365
    Posts
    11

    Re: Summarize and total data from another sheet

    Hi, thank you again, this does not accomplish what I am trying to do. The phases are irrelevant and not needed on the summary page. I need to combine each unique role from every phase and total the hours. So in your example sheet on the Output tab for example, "Creative Senior-Art Direction" is in row 3, 6, 12 with the hours from each phase. What I need is 1 row for that role with the sum of all hours across the phases.

    I am also hoping to accomplish with just a formula as this will eventually be used with the online version of Excel which does not support VBA I think

  6. #6
    Forum Expert
    Join Date
    05-30-2012
    Location
    The Netherlands
    MS-Off Ver
    Office 365
    Posts
    14,987

    Re: Summarize and total data from another sheet

    Did you look at the sheet PT Oeldere

    The result is

    - Project Manager Senior 30

    This result is the same value as your expected result.


    The phases can be relevant for further analyse of the data.


    "I am also hoping to accomplish with just a formula as this will eventually be used with the online version of Excel which does not support VBA I think"

    1) Did you test it?
    2) What is the result of that test?

  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,307

    Re: Summarize and total data from another sheet

    in "Project Summary"

    in B2

    =SUMIFS(Sheet1!$B$3:$K$30,Sheet1!$A$3:$J$30,A2)

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

  8. #8
    Forum Expert dosydos's Avatar
    Join Date
    12-09-2015
    Location
    Massachusetts
    MS-Off Ver
    365(PC) V:2308
    Posts
    1,474

    Re: Summarize and total data from another sheet

    See if the below workbook works for you. I created a new tab called "Formulas". In this tab in column A i have created 4 FILTER() functions as shown below. The red text below denotes i changed the column reference:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    The formulas are located in A2, A70, A156, A314. I left large gaps in between in case your data on the project Summary grows exponentially so that there will be no SPILL# errors.

    Then on your Project Summary in A2, i created a Unique filter column to narrow down, remove duplicate job names and sort them.
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    Finally in B2 i created a sumif formula to grab the total number of hours for each of the unique titles.
    Formula: copy to clipboard
    Please Login or Register  to view this content.



    You can hide the formulas tab if you want as well. But due to how your data is presented in the Estimate tab, a helper tab is a necessity.

    Hope this helps.
    Attached Files Attached Files
    <----- If you are happy with your solution please click on the "* Add Reputation" as a way to say thank you.

  9. #9
    Registered User
    Join Date
    04-19-2022
    Location
    Chicago, IL
    MS-Off Ver
    365
    Posts
    11

    Re: Summarize and total data from another sheet

    -----------
    Last edited by lichldo; 06-10-2022 at 10:36 AM.

  10. #10
    Registered User
    Join Date
    04-19-2022
    Location
    Chicago, IL
    MS-Off Ver
    365
    Posts
    11

    Re: Summarize and total data from another sheet

    Quote Originally Posted by dosydos View Post
    See if the below workbook works for you. I created a new tab called "Formulas". In this tab in column A i have created 4 FILTER() functions as shown below. The red text below denotes i changed the column reference:
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    The formulas are located in A2, A70, A156, A314. I left large gaps in between in case your data on the project Summary grows exponentially so that there will be no SPILL# errors.

    Then on your Project Summary in A2, i created a Unique filter column to narrow down, remove duplicate job names and sort them.
    Formula: copy to clipboard
    Please Login or Register  to view this content.


    Finally in B2 i created a sumif formula to grab the total number of hours for each of the unique titles.
    Formula: copy to clipboard
    Please Login or Register  to view this content.



    You can hide the formulas tab if you want as well. But due to how your data is presented in the Estimate tab, a helper tab is a necessity.

    Hope this helps.
    I think this will work great thank you so much

  11. #11
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,605

    Re: Summarize and total data from another sheet

    Try this code.
    Please Login or Register  to view this content.
    Attached Files Attached Files
    Last edited by kvsrinivasamurthy; 06-10-2022 at 10:59 AM.
    Pl note
    Array formula should be confirmed with Ctrl+Shift+Enter keys together.
    If answere is satisfactory press * to add reputation.

+ 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. Formula to summarize sheet data
    By rizmomin in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 11-15-2017, 11:20 PM
  2. [SOLVED] How to get summarize data from Various Sheets in a single sheet
    By purav82 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 10-28-2017, 09:08 AM
  3. Want to summarize by extracting data from a daily sheet
    By Captainmarkie in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 04-27-2015, 05:35 PM
  4. How to summarize monthly in a data sheet?
    By Annatw in forum Excel General
    Replies: 2
    Last Post: 12-17-2013, 11:55 AM
  5. Summarize data from different sheets in the last sheet
    By maxfesca in forum Excel General
    Replies: 1
    Last Post: 03-25-2008, 01:08 PM
  6. summarize data sheet
    By GateKeeper in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 10-02-2005, 09:05 AM

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