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

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
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,214,622
Messages
6,120,585
Members
448,972
Latest member
Shantanu2024

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