I have the following data with the rows showing hours individuals have worked by columns showing the week-start date. The source data is split into a task breakdown so the same person can appear more than once. I need to consolidate the information. I would like to do something like SUM 1/4/11, 8/4/11, 15/4/11 BY PERSON.
Person___1/4/11___8/4/11___15/4/11
Pers_A_____5_______5_________5
Pers_B_____10______0_________2
Pers_C_____8_______20________0
Pers_A_____7_______0_________3
Pers_D_____12______12________12
Pers_B_____12______5_________7
If the data is re-formatted as a relation (list), with columns Person, Hours, Date, I can use a pivot table but it looks like pivot tables don’t like matrices.
Any suggestions?
Person___1/4/11___8/4/11___15/4/11
Pers_A_____5_______5_________5
Pers_B_____10______0_________2
Pers_C_____8_______20________0
Pers_A_____7_______0_________3
Pers_D_____12______12________12
Pers_B_____12______5_________7
If the data is re-formatted as a relation (list), with columns Person, Hours, Date, I can use a pivot table but it looks like pivot tables don’t like matrices.
Any suggestions?