Is there a way to use VBA code to identify unique rows in my data?

Giovanni03

New Member
Joined
May 23, 2023
Messages
33
Office Version
  1. 365
  2. 2021
Platform
  1. Windows
Hello!

I'm looking to see if there's a way to use VBA code to identify unique rows in my sheet. I have code that identifies unique in a column but cant seem to make it work for an entire row.

My Data has 9 columns, and two of them are the main ones that will show me that the row is unique.

For example,

Date​
Assignment #1
location​
Order # 1
0:10:00​
John Doe #1DELIVERY
Item #1​
Item Description
Date​
Assignment #2
location​
Order # 2
0:20:00​
John Doe #2Service
Item #2​
Item Description
Date​
Assignment #1
location​
Order # 1
0:20:00​
John Doe #1DELIVERY
Item #1​
Item Description

My goal is to identify orders that show up only once (Column D) as well as column G stating "Service".
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
Hi @Giovanni03
Welcome to the MrExcel forum. Please accept my warmest greetings and sincere hope that all is well.

With conditional formating:
Dante Amor
ABCDEFGHI
1DateAssignment #1locationOrder # 10:10:00John Doe #1DELIVERYItem #1Item Description
2DateAssignment #2locationOrder # 20:20:00John Doe #2ServiceItem #2Item Description
3DateAssignment #1locationOrder # 10:20:00John Doe #1DELIVERYItem #1Item Description
4DateAssignment #2locationOrder # 20:20:00John Doe #2DELIVERYItem #2Item Description
Hoja6
Cells with Conditional Formatting
CellConditionCell FormatStop If True
D:D,G:GExpression=COUNTIFS($D:$D,$D1,$G:$G,$G1)=1textNO


--------------
Let me know the result and I'll get back to you as soon as I can.
Cordially
Dante Amor
--------------​
 
Upvote 0
If you prefer the macro, I show you 2 options, the second one should be faster if you have a lot of records.

First:
VBA Code:
Sub countuniques_v1()
  Dim c As Range
  Dim lr As Long
  
  lr = Range("D" & Rows.Count).End(3).Row
  For Each c In Range("D1:D" & lr)
    If WorksheetFunction.CountIfs(Range("D1:D" & lr), c.Value, Range("G1:G" & lr), c.Offset(, 3).Value) = 1 Then
      Range("D" & c.Row & ",G" & c.Row).Interior.Color = vbYellow
    End If
  Next
End Sub

Second:
VBA Code:
Sub countuniques_v2()
  Dim i As Long
  Dim dic As Object
  Dim ky As String
  Dim itm As Variant
  Dim rng As Range
  
  Set dic = CreateObject("Scripting.Dictionary")
  Set rng = Range("A1")
  For i = 1 To Range("D" & Rows.Count).End(3).Row
    ky = Range("D" & i).Value & "|" & Range("G" & i).Value
    If Not dic.exists(ky) Then dic(ky) = i Else dic.Remove ky
  Next
  For Each itm In dic.items
    Set rng = Union(rng, Range("D" & itm & ",G" & itm))
  Next
  If Not rng Is Nothing Then rng.Interior.Color = vbYellow
  Range("A1").Interior.Color = xlNone
End Sub

--------------
I hope to hear from you soon.
Respectfully
Dante Amor
--------------​
 
Upvote 0
Thank you for the reply Dante, I tried both codes and they are highlighting duplicates, some are unique but others are dups. I'm wondering if i can just do it by column and not entire row. like if a name only shows up once and the other column states "Service" then highlight both cells.
 
Upvote 0
In my tests the 2 macros works.
You can put your sample data here before running the macro.
Another image after running the macro and a third image with the expected result.
 
Upvote 0
The two images to the left is what it looks like when i run the code. ideally i would like to only highlight unique orders with a service line not delivery.

1685227644529.png
1685227656753.png
1685227792804.png
1685227804571.png
 
Upvote 0
Ok, I think I understood.
It looks like your data starts in row 2.
Then try this macro.

VBA Code:
Sub countuniques_v1()
  Dim c As Range
  Dim lr As Long
 
  Range("D:G").Interior.Color = xlNone
  lr = Range("D" & Rows.Count).End(3).Row
  For Each c In Range("D2:D" & lr)
    If WorksheetFunction.CountIf(Range("D2:D" & lr), c.Value) = 1 And _
      Range("G" & c.Row).Value = "SERVICE" Then
      Range("D" & c.Row & ",G" & c.Row).Interior.Color = vbYellow
    End If
  Next
End Sub

--------------
Let me know the result and I'll get back to you as soon as I can.
Cordially
Dante Amor
--------------​
 
Upvote 0
I was quite partial to Dante's option 2 in post #3.

Here it is modified for the new understanding of the requirements. It will be much faster than using Countif

VBA Code:
Sub countuniques_v3()
    Dim i As Long
    Dim dic As Object
    Dim ky As String
    Dim itm As Variant
    Dim rng As Range, rngHighlight As Range
    Dim arr As Variant
    
    Set dic = CreateObject("Scripting.Dictionary")
    Set rng = Range("D1:G" & Cells(Rows.Count, "D").End(xlUp).Row)
    arr = rng.Value
    For i = 2 To UBound(arr)
        ky = CStr(arr(i, 1))
        If Not dic.exists(ky) Then
            dic(ky) = i
        Else
            dic(ky) = "X"
        End If
    Next i
    
    For Each itm In dic.items
        If itm <> "X" Then
            If UCase(arr(itm, 4)) <> "DELIVERY" Then
            'If Not StrComp(arr(itm, 4), "DELIVERY", vbTextCompare) Then
                If rngHighlight Is Nothing Then
                    Set rngHighlight = Range("D" & itm & ",G" & itm)
                Else
                    Set rngHighlight = Union(rngHighlight, Range("D" & itm & ",G" & itm))
                End If
            End If
        End If
    Next itm
    
    If Not rngHighlight Is Nothing Then rngHighlight.Interior.Color = vbYellow

End Sub
 
Upvote 0
Hi @Giovanni03

I had already updated my version 2 with dictionary management, I was just waiting for your confirmation of the result.
Here I present my version 2.

VBA Code:
Sub countuniques_v2()
  Dim i As Long, dic As Object, ky As String
  Dim itm As Variant, rng As Range
  
  Set dic = CreateObject("Scripting.Dictionary")
  Range("D:G").Interior.Color = xlNone
  Set rng = Range("D1")
  For i = 2 To Range("D" & Rows.Count).End(3).Row
    ky = Range("D" & i).Value
    If Not dic.exists(ky) Then
      If UCase(Range("G" & i).Value) = UCase("SERVICE") Then dic(ky) = i Else dic(ky) = Empty
    Else
      dic(ky) = Empty
    End If
  Next
  
  For Each itm In dic.items
    If itm <> "" Then Set rng = Union(rng, Range("D" & itm & ",G" & itm))
  Next
  If Not rng Is Nothing Then rng.Interior.Color = vbYellow
  Range("D1").Interior.Color = xlNone
End Sub

--------------
I hope to hear from you soon.
Respectfully
Dante Amor
--------------​
 
Upvote 1
Apologies for the late reply, holiday weekend.

Dante i tried your code and it worked!!!! Thank you so much for the help with this. 😊

VBA Code:
VBA Code:
Sub countuniques_v1()
Dim c As Range
Dim lr As Long
 
Range("D:G").Interior.Color = xlNone
lr = Range("D" & Rows.Count).End(3).Row
For Each c In Range("D2:D" & lr)
If WorksheetFunction.CountIf(Range("D2:D" & lr), c.Value) = 1 And _
Range("G" & c.Row).Value = "SERVICE" Then
Range("D" & c.Row & ",G" & c.Row).Interior.Color = vbYellow
End If
Next
End Sub
 
Upvote 0

Forum statistics

Threads
1,215,073
Messages
6,122,975
Members
449,095
Latest member
Mr Hughes

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