IF Formula with multiple conditions.

dans1988

New Member
Joined
Dec 23, 2010
Messages
29
Hi all,

I am after a formula that compares figures in cells to each other and if they match will give me a TRUE response or FALSE if they don't.

For example; Cell A54 must match with A54 on worksheet 2, but as must 4 other cells, say B54, C54, D54, E54 match to the corresponding cells on worksheet 2 to fulfill the query. Also what is the maximum conditions that can be tested as I may need more than 4 tests.

If anyone can be of assistance it would be very appreciated!
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Formula might be:
Code:
=AND(A54 = Sheet2!A54, B54 = Sheet2!B54, C54 = Sheet2!C54, D54 = Sheet2!D54, E54 = Sheet2!E54)
No idea about number of arguments AND test can hold. I'm sure you can do an internet search to find this out.
 
Upvote 0

Forum statistics

Threads
1,215,452
Messages
6,124,914
Members
449,195
Latest member
Stevenciu

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