Multiple IFs

datadummy

Active Member
Joined
Mar 16, 2017
Messages
312
Office Version
  1. 365
Platform
  1. Windows
I am trying to write a statement that says if cells K2,L2,M2 = Y or NA then make cell P2=Y, but if any one of those cells = N then cell P2 = N. I have tried multiple ways and have struck out every time and am at a loss, thanks in advance!!
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Hi,

If you Only have 3 possible values (Y, N, NA) in K2, L2, M2, then you can do this:


Book1
P
2Y
Sheet94
Cell Formulas
RangeFormula
P2=IF(OR(K2="N",L2="N",M2="N"),"N","Y")
 
Upvote 0
Maybe:

=IF(COUNTIF(K2:M2,"N"),"N","Y")

This just looks for an N in that range. If you actually want to validate that the cells have Y or NA, then maybe:

=IF(SUM(COUNTIF(K2:M2,{"Y","NA"}))=3,"Y","N")
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,553
Messages
6,120,179
Members
448,948
Latest member
spamiki

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