Require Formula

Johnboy28

Board Regular
Joined
Jun 22, 2013
Messages
172
Office Version
  1. 365
  2. 2019
  3. 2016
  4. 2013
  5. 2010
Platform
  1. Windows
Looking for a formula to match the dates and if "Zone Check" equals "Yes" within that date range, return "Ineligible" and "Eligible" if Zone Check is "No"

1st Answer will be Eligible as All Zone Check were "No"

DateZone CheckDateZone Check
21/07/2020eligible21/07/2020No
22/07/202021/07/2020No
23/07/202021/07/2020No
24/07/202021/07/2020No
21/07/2020No
21/07/2020No
22/07/2020No
22/07/2020No
22/07/2020No
22/07/2020No
22/07/2020Yes
22/07/2020No
22/07/2020No
22/07/2020No
22/07/2020No
22/07/2020No
22/07/2020No
23/07/2020No
23/07/2020No
23/07/2020No
23/07/2020No
23/07/2020No
23/07/2020No
23/07/2020No
23/07/2020No
23/07/2020No
24/07/2020Yes
24/07/2020No
24/07/2020No
 

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
Try the formula in 'B2' (copy down)
Code:
=IF(SUMPRODUCT(--($C$2:$C$30=A2),--($D$2:$D$30="Yes"))>0,"Ineligible","Eligible")
 
Upvote 0

Forum statistics

Threads
1,214,583
Messages
6,120,377
Members
448,955
Latest member
BatCoder

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