CountIF Formula Help

bflan0524

Board Regular
Joined
Oct 7, 2016
Messages
192
Office Version
  1. 2010
hello
i have a sheet that looks like below layout with unique identifiers in the columns. Looking for a formula to help tell me how many of each identifier there is. for example results would be ABC=2 BCD=3 EFG= 7
Note some columns could be blank, not sure if that impacts anything..ty

ABCDE FGHIJKL
ABCABCBCDBCDBCDEFGEFGEFGEFGEFGEFGEFG

<tbody>
</tbody>
 

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.
Try:

=COUNTIF(A1:L1,"ABC")


thanks for the response, my concern would be there is like 4K of rows. so there would be no way to be able to insert all the possible combos of "ABC" etc
does that make sense
 
Upvote 0
thanks for the response, my concern would be there is like 4K of rows. so there would be no way to be able to insert all the possible combos of "ABC" etc
does that make sense
One way is to copy the list to another sheet.
Then, sort the list and use the "Remove Duplicates" functionality in Excel to remove all the duplicate records, so you are left with one of each one.
Then, the the COUNTIF function in the next column to count the number of each entry from the data on the original sheet.
 
Upvote 0
so i can't do that because the sheet actually looks something like this
ABCDEFGHIJKLM
A13455678ABCABCBCDBCDBCDEFGEFGEFGEFGEFGEFGEFG
B12345678HIJHIJHIJHIJHIJHIJHIJKLMKLMKLMKLMKLM

<tbody>
</tbody>

so column A also has a unique identifier, so there are 4K rows with these, then columns B-M is who managed column A during that time frame
does that make sense
****** id="cke_pastebin" style="position: absolute; top: 64.8px; width: 1px; height: 1px; overflow: hidden; left: -1000px;">
HIJ

<tbody>
</tbody>
</body>
 
Upvote 0
Maybe it would make sense if you showed us what you want the results to look like. Do you want a table in each row, starting in column N that has the unique identifiers in that row and the count? Do you want a table on another sheet with the column A identifier and the persons managing that resource with it?
 
Upvote 0
ideally yes as you explained where at the end column N for example would show ABC=2 column O would show BCD=3 etc
if that isnt the most efficient way to do it , i am open to ideas
 
Last edited:
Upvote 0
While you could do that with native formulas, generally speaking "unique" formulas are computationally intensive and complicated, and on 4K rows, I suspect it would bog down your sheet. You could try a UDF (User-Defined Function).

Open a copy of your workbook. Right click on the sheet tab on the bottom and select View Code. From the menu, click Insert > Module. In the sheet that opens, paste this code:

Code:
Public Function UniqCount(ByVal MyRange As Range, ByVal ctr As Long)
Dim cl As Range, MyDict As Object, a As Variant, b As Variant

    Application.Volatile
    UniqCount = ""
    Set MyDict = CreateObject("scripting.Dictionary")
    For Each cl In MyRange
        MyDict(CStr(cl.Value)) = MyDict(CStr(cl.Value)) + 1
    Next cl
    On Error Resume Next
    a = MyDict.keys
    b = MyDict.items
    UniqCount = a(ctr - 1) & " = " & b(ctr - 1)
    
End Function
Press Alt-Q to close the editor.

In N2, place this formula:

=UniqCount($B2:$M2,COLUMNS($N2:N2))

Drag it down and to the right as needed. I suspect this might bog down your sheet as well, but try it and see. You may want to try a macro that reads the entire sheet and places the results when you call the macro.
 
Upvote 0

Forum statistics

Threads
1,215,365
Messages
6,124,513
Members
449,168
Latest member
CheerfulWalker

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