Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a spreadsheet with many sheets in which I assign tasks, responsibilities and an estimated amount of hours.

For example, two of these sheets are FOO and BAR:

                    FOO
+-------------+-------------+-------------+
|    Task     |    Name     |    Hours    |
+-------------+-------------+-------------+
|Whatever 1   | Person 1    |      3      |
|Whatever 2   | Person 2    |      2      |
|Whatever 1   | Person 1    |      1      |
+-------------+-------------+-------------+

                    BAR
+-------------+-------------+-------------+
|    Task     |    Name     |    Hours    |
+-------------+-------------+-------------+
|Whatever 4   | Person 1    |      1      |
|Whatever 5   | Person 3    |      6      |
+-------------+-------------+-------------+

The first sheet is supposed to have a summary of the rest of the document in that way:

        SUMMARY
+-------------+-------+
|    Name     | Hours |
+-------------+-------+
|Person 1     |   5   |
|Person 2     |   2   |
|Person 3     |   6   |
|Person 4     |   0   |
|Person 5     |   0   |
+-------------+-------+

Where the "hours" column in SUMMARY is the sum of the "hours" in all the other sheets for the same person.

An example of the document can be found here: https://docs.google.com/spreadsheet/ccc?key=0AvBAC99RGan7dEF0UC1jNmtwc2dHMFgtRzhQaGRRakE

I'm sure it can be achieved using =QUERY(...) but I'm not sure how to do so...

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.