Formula help for multiple conditions

Sunshine8790

Board Regular
Joined
Jun 1, 2021
Messages
71
Office Version
  1. 365
Platform
  1. Windows
I need a formula in column L that returns a value of "TRUE" if:
Cell in column G is "No Match" (or cell in H is "False")
AND
Cell in K is "False"

I'm at my wits end.

Cell Formulas
RangeFormula
G2:G16G2=IFERROR(MATCH(A2,'User Import Template'!A:A,0),"No Match")
H2:H16,J2:J16H2=ISNUMBER(G2)
I2:I16I2=IFERROR(MATCH(D2,'User Import Template'!D:D,0),"No Match")
K2:K16K2=AND(G2="No Match",I2="No Match")
M2:M16M2=IF(G2="No Match","TRUE","FALSE")
N2:N16N2=IF(I2="No Match","TRUE","FALSE")
Cells with Conditional Formatting
CellConditionCell FormatStop If True
H:NCell Valuecontains "TRUE"textNO
 

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.
I Think this will do it, although none of your records meets the criteria.

=IF(((G2="No Match")+(H2=FALSE))*(K2=FALSE),TRUE)
 
Upvote 1
Solution
I Think this will do it, although none of your records meets the criteria.

=IF(((G2="No Match")+(H2=FALSE))*(K2=FALSE),TRUE)
Thank you for your help.
Records not meeting criteria is probably because I didn't include Columns A-F (Sensitive Data).
I tried your formula and it DOES work.

I found another solution that works as well.
=IF(AND(ISNUMBER(SEARCH("FALSE",H2)),ISNUMBER(SEARCH("FALSE",K2))),"TRUE","FALSE")
 
Upvote 0
For what it's worth, there is no need to use IF if you want True or False, you can just use
Excel Formula:
=AND(OR($G2="No Match",$H2=FALSE),$K2=FALSE)
 
Upvote 0

Forum statistics

Threads
1,215,679
Messages
6,126,180
Members
449,296
Latest member
tinneytwin

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