Find project start and end dates in a DB with many different proje

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've got a spreadsheet containing tracking information for a number of
projects. Each row in the spreadsheet contains the following kinds of
information:

Date Start Time Finish Time Job No. Job Description Task Total Hours Total
Charges

Because I might work on a project at several different times during a day
and over the course of several days, there may be many rows of information
associated with a single project. However, these rows will not be contiguous
because I might work on other projects in between these episodes.

I want to find a way to search this data and find the start and end dates
for each project. What's the most efficient way to do this? I've tried using
DMIN and DMAX, but the need to use separate space on the spreadsheet to
define the search criteria (on two rows!) makes that too cumbersome to use
with a large number of projects. There must be a simple way to do this!!!
Anybody know of one?

Thanks!
 
Hi

i would use a MIN(IF and MAX(IF array formula

e.g.
to find the start date/time of a Job No
=MIN(IF(D1:D100="Job 1",B1:B100,""))
to find the end date/ time of a Job No
=MAX(IF(D1:D100="Job 1",B1:B100,""))

as these are array formulas you need to enter them with CONTROL & SHIFT &
ENTER not just enter

Cheers
JulieD
 
Perfect! Thanks so much!!!



JulieD said:
Hi

i would use a MIN(IF and MAX(IF array formula

e.g.
to find the start date/time of a Job No
=MIN(IF(D1:D100="Job 1",B1:B100,""))
to find the end date/ time of a Job No
=MAX(IF(D1:D100="Job 1",B1:B100,""))

as these are array formulas you need to enter them with CONTROL & SHIFT &
ENTER not just enter

Cheers
JulieD
 

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

Back
Top