Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
HELP! I know someone here can help me! I want to count the number of times
a specific ID number occurs in a column, and return the total count in the cell adjacent to each occurrence of that number: ID # Combined Count 343 1 654 3 654 3 654 3 109 2 109 2 433 1 If anyone can advise, I would greatly appreciate it! THANKS!@ |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
NEVER MIND! I figured it out myself (after MUCH trial and error). Here it is:
=COUNTIF(A:A,A2) Thanks anyway! "Daniel A." wrote: HELP! I know someone here can help me! I want to count the number of times a specific ID number occurs in a column, and return the total count in the cell adjacent to each occurrence of that number: ID # Combined Count 343 1 654 3 654 3 654 3 109 2 109 2 433 1 If anyone can advise, I would greatly appreciate it! THANKS!@ |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try one of these:
With ID #'s starting in cell A2, enter this formula in cell B2 and copy down as needed: =COUNTIF(A:A,A2) If the ID #'s are grouped together as in your sample then this is a little bit better. A1 and B1 are column headers. Entered in B2 and copied down as needed: =IF(A2=A1,B1,COUNTIF(A:A,A2)) Using this formula saves from doing a count on every entry and just does a count on each distinct entry. -- Biff Microsoft Excel MVP "Daniel A." <Daniel wrote in message ... HELP! I know someone here can help me! I want to count the number of times a specific ID number occurs in a column, and return the total count in the cell adjacent to each occurrence of that number: ID # Combined Count 343 1 654 3 654 3 654 3 109 2 109 2 433 1 If anyone can advise, I would greatly appreciate it! THANKS!@ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count Occurences | Excel Discussion (Misc queries) | |||
Count # of Occurences | Excel Discussion (Misc queries) | |||
Count Occurences problem | Excel Discussion (Misc queries) | |||
count double occurences | Excel Worksheet Functions | |||
Trying to count occurences if 2 conditions are met | Excel Worksheet Functions |