Nesting IF statements, involving dates

dasbear3

New Member
Joined
Sep 12, 2008
Messages
22
2u4600h.jpg



Trying to create a formula in AX4 that has the following criteria:
  • Returns "Y" if Today's Date falls between the date noted in AV and the date noted in AW and AT is "NO";
  • "N" if Today's Date falls past the date noted in AW and AT is "NO";
  • "NA" if AT is a "YES";
  • and BLANK if nothing is entered in AQ
I have yet to nest multiple IF statements, and would appreciate a point in the right direction! Thank you for your time.
 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Perhaps:

=IF(AQ4="","",IF(AT4="YES","NA",IF(AT4="NO",IF(AND(TODAY()>=AV4,TODAY()<=AW4),"Y",IF(TODAY()>AW4,"N","")))))
 
Upvote 0

Forum statistics

Threads
1,215,372
Messages
6,124,532
Members
449,169
Latest member
mm424

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