VBA Dictionary mumps Code highlight both non matching columns

Stephen_IV

Well-known Member
Joined
Mar 17, 2003
Messages
1,168
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
https://www.mrexcel.com/forum/excel-questions/1054389-compare-two-column.html

Based off of the thread above, how do I get the code to highlight both columns if they do not match.

mumps code:
Code:
Sub CompareLists()
    Application.ScreenUpdating = False
    Dim Rng As Range, RngList As Object
    Set RngList = CreateObject("Scripting.Dictionary")
    For Each Rng In Range("B1", Range("B" & Rows.Count).End(xlUp))
      If Not RngList.Exists(Rng.Value) Then
        RngList.Add Rng.Value, Nothing
      End If
    Next Rng
    For Each Rng In Range("A1", Range("A" & Rows.Count).End(xlUp))
      If Not RngList.Exists(Rng.Value) Then
        Rng.Font.ColorIndex = 3
      End If
    Next Rng
    RngList.RemoveAll
    Application.ScreenUpdating = True
End Sub
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
Is this what you mean?

If so, could you just apply the shown Conditional Formatting directly? If not, there is code below to apply the formatting.

Excel Workbook
AB
1EmployeeManager
2KenSue
3AnnSue
4JenPam
5JimKim
6TomTed
7AnnTed
8BillBen
9AnnSue
10JimTed
11KenSue
12JimTom
13JenPam
14KenSue
15PatPeg
Managers do not match
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A21. / Formula is =COUNTIF($A$2:$A$15,$A2)<>COUNTIFS($A$2:$A$15,$A2,$B$2:$B$15,$B2)Abc



Code:
Sub DifferentManagers()
  With Range("A2", Range("B" & Rows.Count).End(xlUp))
    .FormatConditions.Delete
    .FormatConditions.Add Type:=xlExpression, Formula1:=Replace(Replace(Replace(Replace( _
      "=COUNTIF(#,^)<>COUNTIFS(#,^,%,@)", "#", .Columns(1).Address), "^", .Cells(1, 1).Address(0, 1)), "%", .Columns(2).Address), "@", .Cells(1, 2).Address(0, 1))
    .FormatConditions(1).Interior.Color = vbYellow
  End With
End Sub
 
Last edited:
Upvote 0
Good morning Peter_SSs,
Thanks for responding. What I am looking to do is through the dictionary highlight values that are in Column A that are not in Column B and likewise Column B that were in Column A. Please see below.
<style type="text/css">
table.tableizer-table {
font-size: 12px;
border: 1px solid #CCC ;
font-family: Arial, Helvetica, sans-serif;
}
.tableizer-table td {
padding: 4px;
margin: 3px;
border: 1px solid #CCC ;
}
.tableizer-table th {
background-color: #104E8B ;
color: #FFF ;
font-weight: bold;
}
</style>
<table class="tableizer-table">
<thead><tr class="tableizer-firstrow"><th>List 1</th><th>List 2</th></tr></thead><tbody>
<tr><td>Peter</td><td><font color="blue">Paul</td></tr>
<tr><td><font color="blue">Ken</td><td><font color="blue">Mike</td></tr>
<tr><td><font color="blue">Ray</td><td>Jay</td></tr>
<tr><td>Jay</td><td>Peter</td></tr>
</tbody></table>
 
Upvote 0
Thanks for responding. What I am looking to do is through the dictionary highlight values that are in Column A that are not in Column B and likewise Column B that were in Column A.
Hmm, not too much like that other thread then. ;)

Why are you insisting on using the dictionary object, when Excel's standard Conditional Formatting can do the same job?

Excel Workbook
AB
1List 1List 2
2PeterPaul
3KenMike
4RayJay
5JayPeter
Sheet2
Cells with Conditional Formatting
CellConditionCell FormatStop If True
A21. / Formula is =ISNA(MATCH(A2,B$2:B$5,0))Abc
B21. / Formula is =ISNA(MATCH(B2,A$2:A$5,0))Abc
 
Upvote 0
Hi Peter_SSs thanks for that. I am locked into the dictionary object because I am trying to learn VBA. Thank you for the reponse.
 
Upvote 0
I am locked into the dictionary object because I am trying to learn VBA.
OK, now I understand - that's a fair enough reason. :)
Here is one way. It is just designed for a 2-column range like you example.
Code:
Sub MarkSingles()
  Dim d As Object
  Dim a As Variant
  Dim i As Long, j As Long
  
  Set d = CreateObject("Scripting.Dictionary")
  d.CompareMode = 1
  With Range("A2", Range("B" & Rows.Count).End(xlUp))
    .Font.Color = 0
    a = .Value
    For i = 1 To UBound(a, 1)
      For j = 1 To 2
        d(a(i, j)) = d(a(i, j)) & j
      Next j
    Next i
    For i = 1 To UBound(a, 1)
      For j = 1 To 2
        If InStr(1, d(a(i, j)), 3 - j) = 0 Then .Cells(i, j).Font.Color = vbBlue
      Next j
    Next i
  End With
End Sub
 
Upvote 0
Thank you so much Peter_SSs!! I an very appreciative for your help and kindness!
 
Upvote 0

Forum statistics

Threads
1,214,651
Messages
6,120,744
Members
448,989
Latest member
mariah3

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