S
Scott Lyon
This is (hopefully) an easy question (with an easy answer), but I'm not
having much luck figuring it out on my own.
I've got a workbook that consists of two worksheets: Data and Summary.
Column A of Data is a user-enterable column called "Date"
Column B of Data is a user-enterable column called "Task"
Column C of Data is a user-enterable column called "Total"
The user will enter the data in any order, and there will be many repeats of
each "Task" they enter.
On the second worksheet, I want to be able to display a list of each unique
Task they enter, given a date range (using the Date column - in fact, the
range would need to be exactly a week). Then I also want a sum of the Total
column, for that Task, for that date range.
Is there a relatively-easy (read: quick) way I can do that?
To explain a little better, here is some sample data:
Date Task Total
--------------------------
7/11/04 SIT 1
7/12/04 TEST 5
7/13/04 RUN 6
7/14/04 TEST 2
7/15/04 TEST 1
7/15/04 WAIT 4
7/16/04 TEST 3
7/17/04 WALK 7
7/18/04 RUN 8
Given a date range of 7/11/04 - 7/17/04 (so excluding the 7/18 RUN task
automatically), I'd like to see the following results (on the Summary
worksheet):
Task Total
----------------
SIT 1
TEST 11 (5+2+1+3)
RUN 6
WAIT 4
WALK 7
Thanks!
having much luck figuring it out on my own.
I've got a workbook that consists of two worksheets: Data and Summary.
Column A of Data is a user-enterable column called "Date"
Column B of Data is a user-enterable column called "Task"
Column C of Data is a user-enterable column called "Total"
The user will enter the data in any order, and there will be many repeats of
each "Task" they enter.
On the second worksheet, I want to be able to display a list of each unique
Task they enter, given a date range (using the Date column - in fact, the
range would need to be exactly a week). Then I also want a sum of the Total
column, for that Task, for that date range.
Is there a relatively-easy (read: quick) way I can do that?
To explain a little better, here is some sample data:
Date Task Total
--------------------------
7/11/04 SIT 1
7/12/04 TEST 5
7/13/04 RUN 6
7/14/04 TEST 2
7/15/04 TEST 1
7/15/04 WAIT 4
7/16/04 TEST 3
7/17/04 WALK 7
7/18/04 RUN 8
Given a date range of 7/11/04 - 7/17/04 (so excluding the 7/18 RUN task
automatically), I'd like to see the following results (on the Summary
worksheet):
Task Total
----------------
SIT 1
TEST 11 (5+2+1+3)
RUN 6
WAIT 4
WALK 7
Thanks!