TRUE, FALSE - IF condition

avenkat

New Member
Joined
May 15, 2018
Messages
12
Hi,

I have a bunch of IF conditions which have given me TRUE or FALSE values. I am trying to combine False values derived to conjoin with another IF statement but I am getting a FALSE value for all the data .
For eg

ABCDEFCombined A-FNew Value
TrueFalseFalseFalseFalseFalse=IF(AND(A2={"True"},B2={"False"},C2={"True"},D2={"False"}),TRUE,FALSE)

FALSE
TrueFalseTrueFalseTrueTrueTRUE

<tbody>
</tbody>

I am getting all New value columns as "False" , any help on a better solution for this sort of IF statement?
TIA
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
Maybe:

=AND(A2,B2=FALSE,C2,D2=FALSE)

Excel has different types of values, even if they look the same. FALSE is not the same as "FALSE", which is not the same as {"FALSE"}.
 
Upvote 0
Hi,

You can try it this way:


Book1
ABCDEFGH
1New Value
2TRUEFALSEFALSEFALSEFALSEFALSEFALSE
3TRUEFALSETRUEFALSETRUETRUETRUE
Sheet110
Cell Formulas
RangeFormula
H2=AND(A2,C2,--OR(B2,D2)=0)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,657
Messages
6,120,769
Members
448,991
Latest member
Hanakoro

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