Calculating the difference between two dates if two criteria are m

  • Thread starter Thread starter Detroit David
  • Start date Start date
D

Detroit David

The criteria have two parameters:

A. Value in column “F†matches one of the following three words: “Openâ€,
“On-goingâ€, or “On-Hold and…

B. If today’s date is greater than the date in column D

Then calculate the number of days between today’s date and date in column
“D†using days

The formula will be in Column G and

The cell should have either a number (of days) or be blank.

Thank you in advance for your help.


A B C D E F G
22 Text 03/05/08 04/01/08 On-going
23 Text 03/05/08 03/31/08 04/03/08 Done
24 Text 03/05/08 03/05/08 03/06/08 Done
25 Text 03/05/08 03/15/08 03/06/08 Done
26 Text 03/05/08 04/15/08 04/01/08 Done
27 Text 04/07/08 04/15/08 Open
28 Text 04/07/08 04/11/08 Open
29 Text 04/07/08 04/09/08 04/09/08 Done
30 Text 04/07/08 04/30/08 Open
31 Text 04/07/08 04/07/08 04/07/08 Done
32 Text 04/07/08 04/15/08 04/11/08 Done
33 Text 04/07/08 04/11/08 04/09/08 Open
34 Text 04/07/08 04/11/08 Open
 
Try this formula in G1 and copy on down

=IF(And(OR(F1="Open",F1="On-Going",F1="On-Hold"),Today()>D1),Today()-D1,"")

This is untested and just off the top of my head... so give it a try and let
me know if there are any problems
 
Thank you it worked perfectly.

The top of your head is better than all of mine.

Thanks again
 
Glad it worked, must've been the red bull!

Detroit David said:
Thank you it worked perfectly.

The top of your head is better than all of mine.

Thanks again
 

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