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

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
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,224,747
Messages
6,180,719
Members
452,995
Latest member
isldboy

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