Unique Values Macro

nirvehex

Well-known Member
Joined
Jul 27, 2011
Messages
503
Office Version
  1. 365
Platform
  1. Windows
Hi, I have code that I use as a personal macro on my ribbon that lets you highlight a list of cells and it pastes this to another tab and removes duplicates so I can get a unique count:

Code:
Sub List_Unique_Values()
'Create a list of unique values from the selected column


Dim rSelection As Range
Dim ws As Worksheet
Dim vArray() As Long
Dim i As Long
Dim iColCount As Long


  'Check that a range is selected
  If TypeName(Selection) <> "Range" Then
    MsgBox "Please select a range first.", vbOKOnly, "List Unique Values Macro"
    Exit Sub
  End If
  
  'Store the selected range
  Set rSelection = Selection


  'Add a new worksheet
  Set ws = Worksheets.Add
  
  'Copy/paste selection to the new sheet
  rSelection.Copy
  
  With ws.Range("A1")
    .PasteSpecial xlPasteValues
    .PasteSpecial xlPasteFormats
    '.PasteSpecial xlPasteValuesAndNumberFormats
  End With
  
  'Load array with column count
  'For use when multiple columns are selected
  iColCount = rSelection.Columns.Count
  ReDim vArray(1 To iColCount)
  For i = 1 To iColCount
    vArray(i) = i
  Next i
  
  'Remove duplicates
  ws.UsedRange.RemoveDuplicates Columns:=vArray(i - 1), Header:=xlGuess
  
  'Remove blank cells
  On Error Resume Next
    ws.UsedRange.SpecialCells(xlCellTypeBlanks).Delete Shift:=xlShiftUp
  On Error GoTo 0
  
  'Autofit column
  ws.Columns("A").AutoFit
  
  'Exit CutCopyMode
  Application.CutCopyMode = False
    
End Sub

However, I have to always then delete the tab that it creates. I'm wondering, can this be modified to just pop up a dialogue box that shows the unique count so I do is see the count and then click ok?

Thanks!
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
How about:

Code:
Sub countUniques()
Dim MyDict As Object, c As Range

    Set MyDict = CreateObject("Scripting.Dictionary")
    For Each c In Selection
        MyDict(CStr(c)) = 1
    Next c
    MsgBox "There are " & MyDict.Count & " unique items in the selection"
    Set MyDict = Nothing
    
End Sub
 
Upvote 0
The following macro uses the Dictionary object to obtain a unique count from the selected cells, and then simply displays the unique count. As per your example, when multiple columns are selected, the unique count is obtained from the last column.

Code:
Option Explicit

Sub GetUniqueCountFromRangeSelection()

    Dim dicUnique As Object
    Dim rngColumn As Range
    Dim rngCell As Range
    
    If TypeName(Selection) <> "Range" Then
        MsgBox "Please select a range, and try again.", vbOKOnly, "Unique Count"
        Exit Sub
    End If
    
    Set dicUnique = CreateObject("Scripting.Dictionary")
    dicUnique.CompareMode = 1  ' 1 = case-insensitive comparison, 0 = case-sensitive comparison
    
    With Selection
        Set rngColumn = .Columns(.Columns.Count)
    End With
    
    For Each rngCell In rngColumn.Cells
        If Not dicUnique.Exists(rngCell.Value) Then
            dicUnique.Add Key:=rngCell.Value, Item:=""
        End If
    Next rngCell
    
    MsgBox "Unique count:  " & dicUnique.Count, vbInformation, "Unique Count"
    
    Set dicUnique = Nothing
    Set rngColumn = Nothing
    Set rngCell = Nothing
    
End Sub

Hope this helps!
 
Last edited:
Upvote 0
Thanks, I went with Eric W's since it was nice and short. Thanks to both of you though! Appreciate your time!
 
Upvote 0
Glad we could help.

It's probably worth noting that Dominic's macro is a bit longer since he has logic to only count unique values in the last column, plus he has some better error handling. If either of those becomes an issue, you may want to look at his again.
 
Upvote 0
Hi guys, got another question - I noticed the code that Eric wrote counts everything in a selection even if I have a filter on. Anyway to make it count only the selection that it's filtered to. Like if I have cells that are filtered out, it won't include those?
 
Upvote 0
I'll let Dominic update his version, but you can easily update mine like so:

Rich (BB code):
Sub countUniques()
Dim MyDict As Object, c As Range


    Set MyDict = CreateObject("Scripting.Dictionary")
    For Each c In Selection
        If c.EntireRow.Hidden = False Then MyDict(CStr(c)) = 1
    Next c
    MsgBox "There are " & MyDict.Count & " unique items in the selection"
    Set MyDict = Nothing
    
End Sub
 
Upvote 0
Oh wow, that's beautifully simple! Thanks again Eric! Nice tag line about the impossible/truth btw...
 
Last edited:
Upvote 0
Glad to help! :)

The tagline is actually a quote from one of my favorite fictional characters . . .
 
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