Count of Values in Single Column

akvpv6

New Member
Joined
May 1, 2023
Messages
14
Office Version
  1. 365
Platform
  1. Windows
Good Morning,

I am trying to determine the best formula to use to capture how many times a value shows up in a single column. In the attached image I am trying to obtain a count for every time one of the Hold Reason Notes shows up in the column. Example - in the first 5 rows the formula would count 1 - ? 1 - Automated Special Billing Hold 1 - Discount and 2 - Incentive.

I feel that it will be a countif function but I don't know how to have it count when there are multiple options.

Thank you!
 

Attachments

  • Excel Image.PNG
    Excel Image.PNG
    21.8 KB · Views: 4

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
How about like
Excel Formula:
=countifs(a$2:a2,a2)&" - "&a2
 
Upvote 0
How about like
Excel Formula:
=countifs(a$2:a2,a2)&" - "&a2

How about like
Excel Formula:
=countifs(a$2:a2,a2)&" - "&a2
I think this is close to what I was looking for, is there anyway to have a formula with one of every option with the count next to it? I think I did a poor job explaining in my initial post.

? - total times this shows up in the data
Automated Special Billing - total times this shows up in the data
Incentive - total times this shows up in the data
 
Upvote 0
How about
Excel Formula:
=LET(u,UNIQUE(FILTER(A2:A1000,A2:A1000<>"")),HSTACK(u,COUNTIFS(A:A,u)))
 
Upvote 1
Solution
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,215,072
Messages
6,122,968
Members
449,095
Latest member
Mr Hughes

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