Function Help

D

DW

Example:
A B C D
F
1 Job Function Start Time End Time Total Time Pre Sort
2 PS 8:00am 8:10am .10
..40
3 AC 8:15am 8:20am .05
Acusort
4 TS 9:00am 9:20am .15
..20
5 AC 10:15am 10:30am .15 Truck
Sort
6 PS 11:00am 11:30am .30
..15

I am tring to come up with a function for F2, F4 & F6 that will total the
time accured for each job function. Column A2 & A6 should total .40 min in
column F2. If anyone has any idea I would appreciate it. Thanks
 
A

Art Farrell

Hi DW,

You can use the following SUMPRODUCT formulas in your cells:

F2 =SUMPRODUCT((A2:A10="PS")*(D2:D10))

F4 =SUMPRODUCT((A2:A10="AC")*(D2:D10))

F6 =SUMPRODUCT((A2:A10="TS")*(D2:D10))

CHORDially,
Art Farrell
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top