Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I need to count the occurrence of a string that would be contained in text in a column.
For example, in column J, starting at cell 1, J 1 x1 x4 2 x1 x2 x3 3 x2 x5 4 x3 x4 x6 (For example, cell J1 equals the text string "x1 x4".) So, the answer to the number of times the string ''x4' occurs in J1:J4 is 2. Is it even possible for this type of counting to be performed with an Excel formula? How??? Thanks, -Bill. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Bill,
Use the COUNTIF function. E.g, =COUNTIF(J1:J4,"*x4*") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Bill" wrote in message ... I need to count the occurrence of a string that would be contained in text in a column. For example, in column J, starting at cell 1, J 1 x1 x4 2 x1 x2 x3 3 x2 x5 4 x3 x4 x6 (For example, cell J1 equals the text string "x1 x4".) So, the answer to the number of times the string ''x4' occurs in J1:J4 is 2. Is it even possible for this type of counting to be performed with an Excel formula? How??? Thanks, -Bill. |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
WOW, wildcards! Never knew Excel had 'em! This is gonna change LOTS of things for me...
How can I get it to work if, for example, x4 is in a table cell? ex: if cell D3 = x4 (I can't get "*D3*" to work) THANKS!!!! Bill "Chip Pearson" wrote in message... Bill, Use the COUNTIF function. E.g, =COUNTIF(J1:J4,"*x4*") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Bill" wrote in message ... I need to count the occurrence of a string that would be contained in text in a column. For example, in column J, starting at cell 1, J 1 x1 x4 2 x1 x2 x3 3 x2 x5 4 x3 x4 x6 (For example, cell J1 equals the text string "x1 x4".) So, the answer to the number of times the string ''x4' occurs in J1:J4 is 2. Is it even possible for this type of counting to be performed with an Excel formula? How??? Thanks, -Bill. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Bill,
Try =COUNTIF(J1:J4,"*"&D3&"*") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Bill" wrote in message ... WOW, wildcards! Never knew Excel had 'em! This is gonna change LOTS of things for me... How can I get it to work if, for example, x4 is in a table cell? ex: if cell D3 = x4 (I can't get "*D3*" to work) THANKS!!!! Bill "Chip Pearson" wrote in message... Bill, Use the COUNTIF function. E.g, =COUNTIF(J1:J4,"*x4*") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Bill" wrote in message ... I need to count the occurrence of a string that would be contained in text in a column. For example, in column J, starting at cell 1, J 1 x1 x4 2 x1 x2 x3 3 x2 x5 4 x3 x4 x6 (For example, cell J1 equals the text string "x1 x4".) So, the answer to the number of times the string ''x4' occurs in J1:J4 is 2. Is it even possible for this type of counting to be performed with an Excel formula? How??? Thanks, -Bill. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Yep, just figured that out.
Thanks, Chip, you saved my butt, Bill. "Chip Pearson" wrote in message .. . Bill, Try =COUNTIF(J1:J4,"*"&D3&"*") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Bill" wrote in message ... WOW, wildcards! Never knew Excel had 'em! This is gonna change LOTS of things for me... How can I get it to work if, for example, x4 is in a table cell? ex: if cell D3 = x4 (I can't get "*D3*" to work) THANKS!!!! Bill "Chip Pearson" wrote in message... Bill, Use the COUNTIF function. E.g, =COUNTIF(J1:J4,"*x4*") -- Cordially, Chip Pearson Microsoft MVP - Excel Pearson Software Consulting, LLC www.cpearson.com "Bill" wrote in message ... I need to count the occurrence of a string that would be contained in text in a column. For example, in column J, starting at cell 1, J 1 x1 x4 2 x1 x2 x3 3 x2 x5 4 x3 x4 x6 (For example, cell J1 equals the text string "x1 x4".) So, the answer to the number of times the string ''x4' occurs in J1:J4 is 2. Is it even possible for this type of counting to be performed with an Excel formula? How??? Thanks, -Bill. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How to count the number of times a string appears in a column? | Excel Worksheet Functions | |||
Column A = X, Column B =y count = count +1 | Excel Worksheet Functions | |||
Count Intervals of Filtered TEXT values in Column and Return Count across a Row | Excel Worksheet Functions | |||
Inserting Filtered RC cell information into other worksheets | Excel Discussion (Misc queries) | |||
Count cells based on date range in another column | New Users to Excel |