return Yes or No after meeting several criteria

EddyFame

New Member
Joined
Mar 19, 2020
Messages
2
Office Version
  1. 2013
Platform
  1. Windows
Greetings all. First post here and wanted to say this is a great network. glad to have found you all. i'm currently putting a report together that indicates where all the rows meets specific criteria. (age, location, time in residence, etc.)
is it possible to write a formula that checks each column N:S in a row to make it say Yes or No if they were all met my criteria? example would be a Male, over 80, had a policy for 20, and spousal_link?
there's plenty of other requirements but i think i can figure out how to add them once i learn the formula below. TYIA. EF
01-06-2020_(B)_Master-Data.xlsx
NOPQRS
1GenderDOBCurrent_AgePolicy_DurationSpousal_IndSpousal_Link
2F06-May-3782.6611922.507871NN
3M27-Feb-3683.84941822.507871NY
Master File
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Hi and welcome to MrExcel.
How about:

varios 19mar2020.xlsm
NOPQRST
1GenderDOBCurrent_AgePolicy_DurationSpousal_IndSpousal_LinkFormula
2F05/06/193782.6611922.507871NNNo
3M2/27/193683.84941822.507871NYYes
Hoja13
Cell Formulas
RangeFormula
T2:T3T2=IF(AND(N2="M",P2>=80,Q2>=20,S2="Y"),"Yes","No")
 
Upvote 0
Hi and Thank you.
how do i include multiple entries in one column. for example, if N2="M" but i also want to include a blank and a U (unknown)?
 
Upvote 0
Try this
=IF(AND(OR(N2={"M","","U"}),P2>=80,Q2>=20,S2="Y"),"Yes","No")
 
Upvote 0

Forum statistics

Threads
1,215,647
Messages
6,126,005
Members
449,279
Latest member
Faraz5023

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