Check status series of dates combined IF with true and multiple false

TwinJohnson

New Member
Joined
Jul 15, 2021
Messages
11
Office Version
  1. 365
  2. 2011
Platform
  1. Windows
There are four possible outcomes
If cell A2 contains no date the expected status is "No Entry Sent"
If cell A2 contains a date <= today then the expected status is "Entry Sent"
If cell A2 contains a date <=today and cell B2 contains a date <=today then the expected status is "Released Not Delivered"
If cell A2 contains a date <=today and cell B2 contains a date <=today and cell C2 contains a date <=today then the expected status is "Delivered", if C2 is blank then "Released not Delivered"

The formula should check all three columns that are in the order in which data is expected to flow as illustrated.

I've tried so many different formulas starting off with writing them separately and piecing them together and run into I can use multiple if's with multiple true's but only one false.

Thank you!
 

Attachments

  • Capture.PNG
    Capture.PNG
    5.8 KB · Views: 7

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Adding column/row in the screenshot
 

Attachments

  • Capture.PNG
    Capture.PNG
    7.6 KB · Views: 5
Upvote 0
You could use the following formula in D2 and copy it down

=LET(count,COUNTIFS(A2:C2,"<="&TODAY()),IFS(count=0,"No Entry Sent",count=1,"Entry Sent",count=2,"Released / not Delivered",count=3,"Delivered"))


=
1626326482254.png


Kind regards

Saba
 
Upvote 0
Another option
Excel Formula:
=CHOOSE(COUNTIFS(A2:C2,"<="&TODAY())+1,"No Entry Sent","Entry Sent","Released / not Delivered","Delivered")
 
Upvote 0

Forum statistics

Threads
1,214,920
Messages
6,122,279
Members
449,075
Latest member
staticfluids

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