Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Dear exper
A cell contains a lot of information. Is it possible to count certan word in a cell please? Say A1 contains a series of text .... 1. Daily Swing even though Sto is hit high or low 2. Look at Chart pattern 3. Stop at dangerous level How can I count number of "O" in the cell A1 please? Thanks Elton |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try this...
=LEN(A1)-LEN(SUBSTITUTE(UPPER(A1),UPPER("O"),"")) Note that SUBSTITUTE is case sensitive. -- Biff Microsoft Excel MVP "Elton Law" wrote in message ... Dear exper A cell contains a lot of information. Is it possible to count certan word in a cell please? Say A1 contains a series of text .... 1. Daily Swing even though Sto is hit high or low 2. Look at Chart pattern 3. Stop at dangerous level How can I count number of "O" in the cell A1 please? Thanks Elton |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
=LEN(A1)-LEN(SUBSTITUTE(A1,"o",""))
It's case sensitive, so if you all "O" or "o", repeat the whole formula substituting the other case and add the two results: =(LEN(A1)-LEN(SUBSTITUTE(A1,"o","")))+(LEN(A1)-LEN(SUBSTITUTE(A1,"O",""))) Hope this helps, Hutch "Elton Law" wrote: Dear exper A cell contains a lot of information. Is it possible to count certan word in a cell please? Say A1 contains a series of text .... 1. Daily Swing even though Sto is hit high or low 2. Look at Chart pattern 3. Stop at dangerous level How can I count number of "O" in the cell A1 please? Thanks Elton |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Thu, 20 May 2010 10:22:01 -0700, Elton Law
wrote: Dear exper A cell contains a lot of information. Is it possible to count certan word in a cell please? Say A1 contains a series of text .... 1. Daily Swing even though Sto is hit high or low 2. Look at Chart pattern 3. Stop at dangerous level How can I count number of "O" in the cell A1 please? Thanks Elton Try the following formula: =SUMPRODUCT(--(MID(A1,ROW(1:999),1)="o")) The 999 in the formula should be any number not less than the number of characters in the text. With the given example text, the returned value is 8. Hope this helps / Lars-Åke |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On 20 Mai, 18:30, "T. Valko" wrote:
Try this... =LEN(A1)-LEN(SUBSTITUTE(UPPER(A1),UPPER("O"),"")) Note that SUBSTITUTE is case sensitive. -- Biff Microsoft Excel MVP "Elton Law" wrote in message ... Dear exper A cell contains a lot of information. Is it possible to count certan word in a cell please? Say A1 contains a series of text .... 1. Daily Swing even though Sto is hit high or low 2. Look at Chart pattern 3. Stop at dangerous level How can I count number of "O" in the cell A1 please? Thanks Elton Hi Biff, I like that UPPER("O") part :-) Have fun, Bernd |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On Thu, 20 May 2010 11:24:51 -0700 (PDT), Bernd P
wrote: On 20 Mai, 18:30, "T. Valko" wrote: Try this... =LEN(A1)-LEN(SUBSTITUTE(UPPER(A1),UPPER("O"),"")) Note that SUBSTITUTE is case sensitive. -- Biff Microsoft Excel MVP "Elton Law" wrote in message ... Dear exper A cell contains a lot of information. Is it possible to count certan word in a cell please? Say A1 contains a series of text .... 1. Daily Swing even though Sto is hit high or low 2. Look at Chart pattern 3. Stop at dangerous level How can I count number of "O" in the cell A1 please? Thanks Elton Hi Biff, I like that UPPER("O") part :-) Have fun, Bernd To be really sure, make it TRIM(LEFT(UPPER("O"))) :-) Lars-Åke |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I like that UPPER("O") part
So then you know why it's there? -- Biff Microsoft Excel MVP "Bernd P" wrote in message ... On 20 Mai, 18:30, "T. Valko" wrote: Try this... =LEN(A1)-LEN(SUBSTITUTE(UPPER(A1),UPPER("O"),"")) Note that SUBSTITUTE is case sensitive. -- Biff Microsoft Excel MVP "Elton Law" wrote in message ... Dear exper A cell contains a lot of information. Is it possible to count certan word in a cell please? Say A1 contains a series of text .... 1. Daily Swing even though Sto is hit high or low 2. Look at Chart pattern 3. Stop at dangerous level How can I count number of "O" in the cell A1 please? Thanks Elton Hi Biff, I like that UPPER("O") part :-) Have fun, Bernd |
#8
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
On 20 Mai, 20:38, Lars-Åke Aspelin wrote:
On Thu, 20 May 2010 11:24:51 -0700 (PDT), Bernd P wrote: On 20 Mai, 18:30, "T. Valko" wrote: Try this... =LEN(A1)-LEN(SUBSTITUTE(UPPER(A1),UPPER("O"),"")) Note that SUBSTITUTE is case sensitive. -- Biff Microsoft Excel MVP "Elton Law" wrote in message ... Dear exper A cell contains a lot of information. Is it possible to count certan word in a cell please? Say A1 contains a series of text .... 1. Daily Swing even though Sto is hit high or low 2. Look at Chart pattern 3. Stop at dangerous level How can I count number of "O" in the cell A1 please? Thanks Elton Hi Biff, I like that UPPER("O") part :-) Have fun, Bernd To be really sure, make it TRIM(LEFT(UPPER("O"))) *:-) Lars-Åke Takk, Lars! :-) Regards, Bernd |
#9
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
To be really sure, make it TRIM(LEFT(UPPER("O")))
To be really super-duper extra sure you might want to use: CLEAN(TRIM(PROPER(LEFT(UPPER(CHAR(79)),1)))) -- Biff Microsoft Excel MVP "Lars-Åke Aspelin" wrote in message ... On Thu, 20 May 2010 11:24:51 -0700 (PDT), Bernd P wrote: On 20 Mai, 18:30, "T. Valko" wrote: Try this... =LEN(A1)-LEN(SUBSTITUTE(UPPER(A1),UPPER("O"),"")) Note that SUBSTITUTE is case sensitive. -- Biff Microsoft Excel MVP "Elton Law" wrote in message ... Dear exper A cell contains a lot of information. Is it possible to count certan word in a cell please? Say A1 contains a series of text .... 1. Daily Swing even though Sto is hit high or low 2. Look at Chart pattern 3. Stop at dangerous level How can I count number of "O" in the cell A1 please? Thanks Elton Hi Biff, I like that UPPER("O") part :-) Have fun, Bernd To be really sure, make it TRIM(LEFT(UPPER("O"))) :-) Lars-Åke |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Count the number of a range of words in a cell | Excel Worksheet Functions | |||
Count Number or words in Cell | Excel Discussion (Misc queries) | |||
How do I count the number of words in a cell? | Excel Worksheet Functions | |||
match and count words | Excel Worksheet Functions | |||
Count the number of words in a cell! | Excel Worksheet Functions |