Match this cell on a different tab, four times formula

bowenable

New Member
Joined
Apr 24, 2019
Messages
1
Hey all, not sure how to explain this, but I'll try my best,

I am looking for a formula to do the following:

If A1 matches A2, then add 2 points (+2) to A3,
If B1 matches B2, then add 2 points (+2) to A3,
if C1 matches C2, then add 2 points (+2) to A3
If D1 matches D2, then add 2 points (+2) to A3.

So hypothetically, if all 4 are positive matches, then A3 should equal 8.


Bowenable
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Try
Code:
=IF(A1=A2,2,0)+IF(B1=B2,2,0)+IF(C1=C2,2,0)+IF(D1=D2,2,0)
 
Upvote 0

Forum statistics

Threads
1,216,728
Messages
6,132,360
Members
449,720
Latest member
NJOO7

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