Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a worksheet with multiple repeating values in column A. I would like
to find a way to copy the values just once per occurence to another worksheet and then tally next to it the number of times the value appears in the original worksheet. So if "Fred" appears in column A 12 times and "Joe" appears 15 times I would to produce a sort of summary sheet that says Col A ColB Rw1 Fred 12 Rw2 Joe 15 I understand the "Countif" but what if the values you're counting change from day to day? Any thoughts? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() The easiest method is to use a pivot table. Next to that, a filter method would work. Otherwise, a macro could delete data from the tally sheet and add what you wanted then. For the last 2 methods using =countif, you would use it like this: =COUNTIF(A:A,A1) -- Kenneth Hobson ------------------------------------------------------------------------ Kenneth Hobson's Profile: http://www.thecodecage.com/forumz/member.php?userid=413 View this thread: http://www.thecodecage.com/forumz/sh...d.php?t=105852 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Use CountIf with reference to Col A for the Criteria, then use a data filter
advanced unique to get your list. "mattg" wrote: I have a worksheet with multiple repeating values in column A. I would like to find a way to copy the values just once per occurence to another worksheet and then tally next to it the number of times the value appears in the original worksheet. So if "Fred" appears in column A 12 times and "Joe" appears 15 times I would to produce a sort of summary sheet that says Col A ColB Rw1 Fred 12 Rw2 Joe 15 I understand the "Countif" but what if the values you're counting change from day to day? Any thoughts? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
COUNTIF Multiple Values | Excel Worksheet Functions | |||
COUNTIF values are 0 | Excel Worksheet Functions | |||
How do you use countif for values in every four cell in a row | Excel Worksheet Functions | |||
How do I Countif for a range of values | Excel Discussion (Misc queries) | |||
Countif between two values | Excel Worksheet Functions |