Find matching opposites

Gav13

New Member
Joined
Aug 8, 2012
Messages
9
Hi all,
First of all, great forum so cheers for the help already provided just by scanning the posts!

I've got one that couldn't find so hoping someone can help me out. I need to find matching opposite pairs by value in column B (by opposites I mean negative and positive values) which relate to the same type in column A.

There can be a number of different variables, but the important thing is that only matching pairs needs to be found - so if there is for example £13, £-13 and £13, then only the first two (or the second two) need to be counted and the extra £13 left as "no match".

Hope that makes sense and here's an example (with column A=Type, B=Value and C=Match) of what I'd need the formula to tell me:

[TABLE="width: 192"]
<colgroup><col width="64" style="width:48pt"> <col width="64" style="width:48pt"> <col width="64" style="width:48pt"> </colgroup><tbody>[TR]
[TD="class: xl65, width: 64"]Type[/TD]
[TD="class: xl68, width: 64"]Value[/TD]
[TD="class: xl65, width: 64"]Match?[/TD]
[/TR]
[TR]
[TD="class: xl66"]Apples[/TD]
[TD="class: xl69, align: right"]£13.00[/TD]
[TD="class: xl66"]Match[/TD]
[/TR]
[TR]
[TD="class: xl66"]Apples[/TD]
[TD="class: xl69, align: right"]-£13.00[/TD]
[TD="class: xl66"]Match[/TD]
[/TR]
[TR]
[TD="class: xl65"]Apples[/TD]
[TD="class: xl68, align: right"]£13.00[/TD]
[TD="class: xl65"]No Match[/TD]
[/TR]
[TR]
[TD="class: xl65"]Oranges[/TD]
[TD="class: xl68, align: right"]£12.00[/TD]
[TD="class: xl65"]No Match[/TD]
[/TR]
[TR]
[TD="class: xl65"]Oranges[/TD]
[TD="class: xl68, align: right"]£12.00[/TD]
[TD="class: xl65"]No Match[/TD]
[/TR]
[TR]
[TD="class: xl65"]Pears[/TD]
[TD="class: xl68, align: right"]£15.00[/TD]
[TD="class: xl65"]No Match[/TD]
[/TR]
[TR]
[TD="class: xl66"]Pears[/TD]
[TD="class: xl69, align: right"]£14.00[/TD]
[TD="class: xl66"]Match[/TD]
[/TR]
[TR]
[TD="class: xl66"]Pears[/TD]
[TD="class: xl69, align: right"]-£14.00[/TD]
[TD="class: xl66"]Match[/TD]
[/TR]
[TR]
[TD="class: xl65"]Pears[/TD]
[TD="class: xl68, align: right"]-£14.00[/TD]
[TD="class: xl65"]No Match[/TD]
[/TR]
[TR]
[TD="class: xl65"]Bananas[/TD]
[TD="class: xl68, align: right"]-£15.00[/TD]
[TD="class: xl65"]No Match[/TD]
[/TR]
[TR]
[TD="class: xl65"]Bananas[/TD]
[TD="class: xl68, align: right"]-£15.00[/TD]
[TD="class: xl65"]No Match[/TD]
[/TR]
[TR]
[TD="class: xl66"]Bananas[/TD]
[TD="class: xl69, align: right"]-£15.00[/TD]
[TD="class: xl66"]Match[/TD]
[/TR]
[TR]
[TD="class: xl66"]Bananas[/TD]
[TD="class: xl69, align: right"]£15.00[/TD]
[TD="class: xl66"]Match[/TD]
[/TR]
[TR]
[TD="class: xl65"]Bananas[/TD]
[TD="class: xl68, align: right"]£14.00[/TD]
[TD="class: xl65"]No Match[/TD]
[/TR]
[TR]
[TD="class: xl66"]Prunes[/TD]
[TD="class: xl69, align: right"]-£18.00[/TD]
[TD="class: xl66"]Match[/TD]
[/TR]
[TR]
[TD="class: xl65"]Prunes[/TD]
[TD="class: xl68, align: right"]£12.00[/TD]
[TD="class: xl65"]No Match[/TD]
[/TR]
[TR]
[TD="class: xl66"]Prunes[/TD]
[TD="class: xl69, align: right"]£18.00[/TD]
[TD="class: xl66"]Match[/TD]
[/TR]
</tbody>[/TABLE]
[TABLE="width: 192"]
<colgroup><col width="64" style="width:48pt"><col width="64" style="width:48pt"><col width="64" style="width:48pt"></colgroup><tbody></tbody>[/TABLE]

Hope that makes sense and happy to take any questions.

Thanks in advance.
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
See if this does what you need

C2 copied down
=IF(COUNTIFS(A$2:A$100,A2,B$2:B$100,-B2)-COUNTIFS(A$1:A1,A2,B$1:B1,B2)>0,"Match","No Match")

Hope this helps

M.
 
Upvote 0

Forum statistics

Threads
1,223,236
Messages
6,170,912
Members
452,366
Latest member
TePunaBloke

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