Excel Formula Countifs + Unique Values

ItalianPlatinum

Well-known Member
Joined
Mar 23, 2017
Messages
793
Office Version
  1. 365
  2. 2019
Platform
  1. Windows
Hello - looking for a formula or VBA to accomplish the below. something that will count unique values by a criteria I define

ABCDFGHIJ
XXXXAAABCXXXXXXXXXX
XXXXAAABCXXXXXXXXXX
XXXXAADEFXXXXXXXXXX
XXXXBBABC1XXXXXXXXXX
XXXXBBDEF1XXXXXXXXXX
XXXXCCABC2XXXXXXXXXX
XXXXCCABC2XXXXXXXXXX
XXXXCCABC2XXXXXXXXXX
XXXXCCDEF2XXXXXXXXXX
UniqueAA2
UniqueBB2
UniqueCC2
 
Try
VBA Code:
Sub UniqueCount_v4()
  Dim d As Object
  Dim a As Variant, Ky As Variant
  Dim lastrw As Long, i As Long
  Dim s As String
  Dim wsDest As Worksheet
 
  Const ResultWorkbook As String = "Results.xlsx"  '<- Edit to suit
  Const ResultWorksheet As String = "abc"   '<- Edit to suit
  Const ResultTopLeft As String = "K1"          '<- Where you want the results
  Const CritColValCol As String = "8 5"         '<- Criteria column & Values column in that order. Edit to suit.
 
  With ActiveSheet
    lastrw = .Cells(.Rows.Count, CLng(Split(CritColValCol)(0))).End(xlUp).Row
    a = Application.Index(.Cells, Evaluate("row(2:" & lastrw & ")"), Split(CritColValCol))
    Set d = CreateObject("Scripting.Dictionary")
    For i = 1 To UBound(a)
      s = "|" & a(i, 2) & "|"
      If InStr(1, d(a(i, 1)), s, 1) = 0 Then d(a(i, 1)) = d(a(i, 1)) & s
    Next i
    ReDim a(1 To d.Count, 1 To 2)
    i = 0
    For Each Ky In d.Keys()
      i = i + 1
      a(i, 1) = Ky: a(i, 2) = UBound(Split(d(Ky), "||")) + 1
    Next Ky
   
  End With
  With Workbooks(ResultWorkbook).Sheets(ResultWorksheet).Range(ResultTopLeft)
    .Resize(, 2).Value = Array("Criteria", "Count")
    .Offset(1).Resize(d.Count, 2).Value = a
  End With
End Sub
PERFECT! Works great. Thank you so much.
 
Upvote 0

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
There is a lot of work to be done to get the results. Sorry, a faster way to get them is not apparent to me.
 
Upvote 0

Forum statistics

Threads
1,215,045
Messages
6,122,840
Members
449,096
Latest member
Erald

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