Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default count number of text in a column

Look at this then and tell me how I could get the report desired without
explictly naming each cell reference or actual name? My column 5800 cells
with multiple and single entries.

Unique Names Names used
Daniel Daniel, Celia
Celia Daniel
Sherlock Batman,Sherlock
Batman Daniel
Celia

Report then would be:
Daniel 3
Celia 2
Batman 1
Sherlock 1

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default count number of text in a column

Check your other thread.

Please don't start a new thread.

Daniel_ITSM wrote:

Look at this then and tell me how I could get the report desired without
explictly naming each cell reference or actual name? My column 5800 cells
with multiple and single entries.

Unique Names Names used
Daniel Daniel, Celia
Celia Daniel
Sherlock Batman,Sherlock
Batman Daniel
Celia

Report then would be:
Daniel 3
Celia 2
Batman 1
Sherlock 1


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default count number of text in a column

Try:

Assuming data in colums A & B then in column C row 2 (first row is header) put

=SUM(IF(ISNUMBER(FIND(A2,$B$2:$B$6,1)),1,0))

Enter with Ctrl+Shift+Enter

Copy down


"Daniel_ITSM" wrote:

Look at this then and tell me how I could get the report desired without
explictly naming each cell reference or actual name? My column 5800 cells
with multiple and single entries.

Unique Names Names used
Daniel Daniel, Celia
Celia Daniel
Sherlock Batman,Sherlock
Batman Daniel
Celia

Report then would be:
Daniel 3
Celia 2
Batman 1
Sherlock 1

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default count number of text in a column

Toppers,

WOW! Well close! What do I do if the length of the column I am trying to
count is different than the one with the unique list? I start to get a
strange count then as below:
names used count
daniel daniel, celia 2
celia celia 3
batman batman 1
sherlock daniel, celia 0
sherlock 4


"Toppers" wrote:

Try:

Assuming data in colums A & B then in column C row 2 (first row is header) put

=SUM(IF(ISNUMBER(FIND(A2,$B$2:$B$6,1)),1,0))

Enter with Ctrl+Shift+Enter

Copy down


"Daniel_ITSM" wrote:

Look at this then and tell me how I could get the report desired without
explictly naming each cell reference or actual name? My column 5800 cells
with multiple and single entries.

Unique Names Names used
Daniel Daniel, Celia
Celia Daniel
Sherlock Batman,Sherlock
Batman Daniel
Celia

Report then would be:
Daniel 3
Celia 2
Batman 1
Sherlock 1

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default count number of text in a column

try - entered with CSE:

=IF(A2<"",SUM(,IF(ISNUMBER(FIND(A2,$B$2:$B$8,1)), 1,0),0),"")

"Daniel_ITSM" wrote:

Toppers,

WOW! Well close! What do I do if the length of the column I am trying to
count is different than the one with the unique list? I start to get a
strange count then as below:
names used count
daniel daniel, celia 2
celia celia 3
batman batman 1
sherlock daniel, celia 0
sherlock 4


"Toppers" wrote:

Try:

Assuming data in colums A & B then in column C row 2 (first row is header) put

=SUM(IF(ISNUMBER(FIND(A2,$B$2:$B$6,1)),1,0))

Enter with Ctrl+Shift+Enter

Copy down


"Daniel_ITSM" wrote:

Look at this then and tell me how I could get the report desired without
explictly naming each cell reference or actual name? My column 5800 cells
with multiple and single entries.

Unique Names Names used
Daniel Daniel, Celia
Celia Daniel
Sherlock Batman,Sherlock
Batman Daniel
Celia

Report then would be:
Daniel 3
Celia 2
Batman 1
Sherlock 1



  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 14
Default count number of text in a column

If I could hire you for a day I would

"Toppers" wrote:

try - entered with CSE:

=IF(A2<"",SUM(,IF(ISNUMBER(FIND(A2,$B$2:$B$8,1)), 1,0),0),"")

"Daniel_ITSM" wrote:

Toppers,

WOW! Well close! What do I do if the length of the column I am trying to
count is different than the one with the unique list? I start to get a
strange count then as below:
names used count
daniel daniel, celia 2
celia celia 3
batman batman 1
sherlock daniel, celia 0
sherlock 4


"Toppers" wrote:

Try:

Assuming data in colums A & B then in column C row 2 (first row is header) put

=SUM(IF(ISNUMBER(FIND(A2,$B$2:$B$6,1)),1,0))

Enter with Ctrl+Shift+Enter

Copy down


"Daniel_ITSM" wrote:

Look at this then and tell me how I could get the report desired without
explictly naming each cell reference or actual name? My column 5800 cells
with multiple and single entries.

Unique Names Names used
Daniel Daniel, Celia
Celia Daniel
Sherlock Batman,Sherlock
Batman Daniel
Celia

Report then would be:
Daniel 3
Celia 2
Batman 1
Sherlock 1

  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4,339
Default count number of text in a column

FYI, I am UK-based (near Portsmouth)!

Thanks for the feedback.

"Daniel_ITSM" wrote:

If I could hire you for a day I would

"Toppers" wrote:

try - entered with CSE:

=IF(A2<"",SUM(,IF(ISNUMBER(FIND(A2,$B$2:$B$8,1)), 1,0),0),"")

"Daniel_ITSM" wrote:

Toppers,

WOW! Well close! What do I do if the length of the column I am trying to
count is different than the one with the unique list? I start to get a
strange count then as below:
names used count
daniel daniel, celia 2
celia celia 3
batman batman 1
sherlock daniel, celia 0
sherlock 4


"Toppers" wrote:

Try:

Assuming data in colums A & B then in column C row 2 (first row is header) put

=SUM(IF(ISNUMBER(FIND(A2,$B$2:$B$6,1)),1,0))

Enter with Ctrl+Shift+Enter

Copy down


"Daniel_ITSM" wrote:

Look at this then and tell me how I could get the report desired without
explictly naming each cell reference or actual name? My column 5800 cells
with multiple and single entries.

Unique Names Names used
Daniel Daniel, Celia
Celia Daniel
Sherlock Batman,Sherlock
Batman Daniel
Celia

Report then would be:
Daniel 3
Celia 2
Batman 1
Sherlock 1

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
count number of specified text within a text/cell Vikas Kumar Excel Discussion (Misc queries) 4 October 11th 06 01:43 PM
Count Number of Occurrences in a Column anniejhsu Excel Worksheet Functions 7 May 31st 06 10:29 AM
How do I count the frequency of a given number in a column? dykstra_sj New Users to Excel 6 February 2nd 06 09:32 PM
how do I count the number of times text in column A matches text i Sheila Excel Worksheet Functions 2 November 16th 05 11:20 PM
Count Intervals of Filtered TEXT values in Column and Return Count across a Row Sam via OfficeKB.com Excel Worksheet Functions 9 July 31st 05 04:37 AM


All times are GMT +1. The time now is 07:37 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"