Macro or formula to find both unique and un-paired values between two columns

Lrmux

New Member
Joined
Jun 9, 2019
Messages
4
I'm trying to make balancing my checkbook easier, but finding it hard to find a macro or formula that does what I need.

I have two columns, one that has the charges according to my bank, and the other which has charges that I've documented myself. It's easy to find values that occur only in the first column or only in the second column. Where I'm getting stuck is finding charges that have the same value in both columns but their frequency is not in agreement, like when I record 1 of my $1.10 charges in but in reality my bank shows I had 3. Would like an easy way to see that I omitted 2 $1.10 charges.

So here would be a sample input:
Input 1Input 2
1.101.10
1.102.20
1.105.50
2.206.60
3.30
5.50

<tbody>
</tbody>


And this would be what I'm looking for:
Out 1Out 2
1.106.60
1.10
3.30

<tbody>
</tbody>
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Try this:
The code will delete duplicate items that exist in both column.
Copy the data to another sheet, run the code, then you need to sort the data manually.

Code:
[FONT=lucida console][COLOR=Royalblue]Sub[/COLOR] a1107980a()
[I][COLOR=seagreen]'https://www.mrexcel.com/forum/excel-questions/1107980-macro-formula-find-both-unique-un-paired-values-between-two-columns.html[/COLOR][/I]
[COLOR=Royalblue]Dim[/COLOR] a [COLOR=Royalblue]As[/COLOR] Range, b [COLOR=Royalblue]As[/COLOR] Range, c [COLOR=Royalblue]As[/COLOR] Range
[COLOR=Royalblue]Dim[/COLOR] res
[COLOR=Royalblue]Set[/COLOR] a = Range([COLOR=brown]"A2"[/COLOR], Cells(Rows.count, [COLOR=brown]"A"[/COLOR]).[COLOR=Royalblue]End[/COLOR](xlUp))
[COLOR=Royalblue]Set[/COLOR] b = Range([COLOR=brown]"B1"[/COLOR], Cells(Rows.count, [COLOR=brown]"B"[/COLOR]).[COLOR=Royalblue]End[/COLOR](xlUp))

    [COLOR=Royalblue]For[/COLOR] [COLOR=Royalblue]Each[/COLOR] c [COLOR=Royalblue]In[/COLOR] a
    res = Application.Match(c, b, [COLOR=Royalblue]False[/COLOR])
    [COLOR=Royalblue]If[/COLOR] IsNumeric(res) [COLOR=Royalblue]Then[/COLOR]
        c.ClearContents
        Cells(res, [COLOR=brown]"B"[/COLOR]).ClearContents
    [COLOR=Royalblue]End[/COLOR] [COLOR=Royalblue]If[/COLOR]
    [COLOR=Royalblue]Next[/COLOR]

[COLOR=Royalblue]End[/COLOR] [COLOR=Royalblue]Sub[/COLOR][/FONT]
 
Upvote 0
You're welcome, glad to help, & thanks for the feedback.:)

To make it faster it's better to turn off 'Application.ScreenUpdating'. So use this one instead:

Code:
Sub a1107980a()
'https://www.mrexcel.com/forum/excel-questions/1107980-macro-formula-find-both-unique-un-paired-values-between-two-columns.html
Dim a As Range, b As Range, c As Range
Dim res
Set a = Range("A2", Cells(Rows.count, "A").End(xlUp))
Set b = Range("B1", Cells(Rows.count, "B").End(xlUp))
[COLOR=#0000ff]Application.ScreenUpdating = False[/COLOR]
    For Each c In a
    res = Application.Match(c, b, False)
    If IsNumeric(res) Then
        c.ClearContents
        Cells(res, "B").ClearContents
    End If
    Next
[COLOR=#0000ff]Application.ScreenUpdating = True[/COLOR]
End Sub
 
Upvote 0
Perfect. This macro was the last piece of a bunch of other macros for automating my checkbook. Turned off Application.ScreenUpdating at the very beginning and back on right after your macro and it makes a nice difference. Thanks! :biggrin:
 
Upvote 0
And this would be what I'm looking for:
Out 1Out 2
1.106.60
1.10
3.30

<tbody>
</tbody>
Would adding this near the end of Akuini's code better give that, or are you finding the blanks created more useful?
Rich (BB code):
        Cells(res, "B").ClearContents
    End If
    Next
    On Error Resume Next
    Columns("A:B").SpecialCells(xlBlanks).Delete Shift:=xlUp
    On Error GoTo 0
Application.ScreenUpdating = True
End Sub
 
Upvote 0
Conditional formatting will do what you want. Select A1 and set this CF condition. Copy the CF to where you need it.

=(COUNTIF($A:$A, A1)<>COUNTIF($B:$B, A1))
 
Last edited:
Upvote 0
Would adding this near the end of Akuini's code better give that, or are you finding the blanks created more useful?

The blanks are actually kind of nice so I've left them. I have the full payment details in a table to the left, and the spaces keep things more in line so I have to scroll less. But I'll add your code and comment it out in case I change things around and need it later. Thanks!
 
Upvote 0

Forum statistics

Threads
1,215,001
Messages
6,122,648
Members
449,092
Latest member
peppernaut

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