Identify and counting unique alpha numeric entries in a column

xerxers

Board Regular
Joined
Nov 30, 2005
Messages
140
I did a search and think that most of the answers were a tad complex for what I am trying to achieve.

I have a number of columns but in one there is an alpha numeric entry.

I would like to identify each unique entry and also count how many times each entry appeared and present that in a format of each unique entry and how many times it occurred.

The column is F8..F624.
The entries are : A108, A234 X250 W218 type entries to name a few.

Thank you in advance for your assistance.

Xerxers
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
This is not too complex. Just install it in your code module1 of the workbook with the activesheet and run it.

Code:
Sub t()
Dim sh As Worksheet, c As Range, rng As Range
Set sh = ActiveSheet
    With sh
        .Range("F7", .Cells(Rows.Count, 6).End(xlUp)).AdvancedFilter xlFilterCopy, , .Cells(Rows.Count, 1).End(xlUp)(3), True
        Set rng = .Cells(Rows.Count, 1).End(xlUp).CurrentRegion
        For Each c In rng.Offset(1)
            If c <> "" Then
                c.Offset(, 1) = Application.CountIf(.Range("F8", .Cells(Rows.Count, 6).End(xlUp)), c.Value)
            End If
        Next
    End With
End Sub

It will list the unique values of column F at the bottom of column A and their count will appear in column B beside the applicable value.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,173
Members
451,543
Latest member
cesymcox

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