I'm Stumped! What If Statement...Help

misskateclark

New Member
Joined
Apr 8, 2014
Messages
4
OK! I give up.... I need Help with this one....
Cell B1 to Return the result "OK" if Cell A1 contains a date that is less than 22 days ago and if Cell C1 is either empty or contains a date. Cell B1 to Return the result "Follow Up" if Cell A1 contains a date that is more than 22 days ago and if Cell C1 is empty.
Cell D1 to Return the result "OK" if Cell E1 contains a date that is at least 65 days greater than Date in Cell C1. Cell D1 to Return the result "Follow Up" if Cell C1 contains a date that is more than 65 days greater than today and if Cell E1 is empty.
Cell G1 to Return the result "OK" if Cell E1 contains a date that is less than 270 days ago and if Cell F1 is either empty or contains a date. Cell G1 to Return the result "Follow Up" if Cell E1 contains a date that is more than 270 days ago and if Cell F1 is empty.
Cell I1 to Return the result "OK" if Cell E1 contains a date that is less than 300 days ago and if Cell H1 is either empty or contains a date. Cell I1 to Return the result "Follow Up" if Cell E1 contains a date that is more than 300 days ago and if Cell H1 is empty.

K. Clark
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Try these:

B1:
Code:
=IF(AND(TODAY()-A1<22,OR(C1="",ISNUMBER(C1))),"OK",IF(AND(TODAY()-A1>22,C1=""),"Follow Up",""))

D1:
Code:
=IF(E1-C1>=65,"OK",IF(AND(C1-TODAY()>65,E1=""),"Follow Up",""))

G1:
Code:
=IF(AND(TODAY()-E1<270,OR(F1="",ISNUMBER(F1))),"OK",IF(AND(TODAY()-E1>270,F1=""),"Follow Up",""))

H1:
Code:
=IF(AND(TODAY()-E1<300,OR(H1="",ISNUMBER(H1))),"OK",IF(AND(TODAY()-E1>300,H1=""),"Follow Up",""))
 
Upvote 0

Forum statistics

Threads
1,214,801
Messages
6,121,644
Members
449,045
Latest member
Marcus05

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top