TRY OUT: Smart-VBA | Code-VBA | Analyzer-XL | Downloader-XL | Trader-XL | MORE.. Best Value Finance Templates Bundle
Got any Excel Questions? Free Excel Help
Count of Each Item in a List See Also:
Count of Items in List COUNTIF ||
Count Only One Occurrence
With the aid of a Pivot
Table and Excel VBA we can get a count of each item
that appears in a list. Let's say the list currently resides in A1:A100,
with A1 being a heading and many items appearing more than once. Copy the
code below into any standard Module of the same Workbook that houses the list. If
unsure how to do this, read instructions after the code below;
Sub CreateCountOf()
Dim strHead As String
Dim strSheetName As String
Dim strListAddress As String
strHead = Selection.Cells(1, 1)
strSheetName = "'" & ActiveSheet.Name & "'!"
strListAddress = Selection.Address(ReferenceStyle:=xlR1C1)
ActiveWorkbook.PivotCaches.Add(SourceType:=xlDatabase, SourceData:= _
strSheetName & strListAddress).CreatePivotTable TableDestination:="", _
TableName:="CountOf"
ActiveSheet.PivotTables("CountOf").AddFields RowFields:=strHead
With ActiveSheet.PivotTables("CountOf").PivotFields(strHead)
.Orientation = xlDataField
.Caption = "Count of" & strHead
.Function = xlCount
End With
ActiveWorkbook.ShowPivotTableFieldList = False
Application.CommandBars("PivotTable").Visible = False
End Sub
To add the code, open the Visual Basic Editor via Tools>Macro>Visual Basic Editor (Alt+F11) then go to Insert>Module and paste in the code above. To run the macro, go to Tools>Macro>Macros (Alt+F8) select the macro name and click "Run".
See Also: Count of Items in List COUNTIF || Count Only One Occurrence
New & Less Than You Think: List Managers | Working With Excel Sheets In VBA | Excel Charting Lessons | Delete rows by condition
Excel Dashboard Reports & Excel Dashboard Charts 50% Off Become an ExcelUser Affiliate & Earn Money
Special! Free Choice of Complete Excel Training Course OR Excel Add-ins Collection on all purchases totaling over $64.00. ALL purchases totaling over $150.00 gets you BOTH! Purchases MUST be made via this site. Send payment proof to special@ozgrid.com 31 days after purchase date.
Instant Download and Money Back Guarantee on Most Software
Excel Trader Package Technical Analysis in Excel With $139.00 of FREE software!
Microsoft ® and Microsoft Excel ® are registered trademarks of Microsoft Corporation. OzGrid is in no way associated with Microsoft
GIVE YOURSELF OR YOUR COMPANY 24/7 MICROSOFT EXCEL SUPPORT & QUESTIONS