ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Count numbers in the same cell (https://www.excelbanter.com/excel-discussion-misc-queries/231666-count-numbers-same-cell.html)

backmara

Count numbers in the same cell
 
I need to know how many numbers are in the same cell.
Example:
A1 inculdes 12,23,34,45
How I calculating this numbers(Answer:4)?

Jacob Skaria

Count numbers in the same cell
 
For comma separated values

=LEN(A1)-LEN(SUBSTITUTE(A1,",",""))+1

If this post helps click Yes
---------------
Jacob Skaria


"backmara" wrote:

I need to know how many numbers are in the same cell.
Example:
A1 inculdes 12,23,34,45
How I calculating this numbers(Answer:4)?


Pete_UK

Count numbers in the same cell
 
Basically, you count the commas and add one. This will do it:

=LEN(A1)-LEN(SUBSTITUTE(A1,",",""))+1

Hope this helps.

Pete

On May 22, 11:47*am, backmara
wrote:
I need to know how many numbers are in the same cell.
Example:
A1 inculdes 12,23,34,45
How I calculating this numbers(Answer:4)?



backmara

Count numbers in the same cell
 
Thanks gyus;
this works: =LEN(A1)-LEN(SUBSTITUTE(A1;",";""))+1

"backmara" kirjoitti:

I need to know how many numbers are in the same cell.
Example:
A1 inculdes 12,23,34,45
How I calculating this numbers(Answer:4)?


Dave Peterson

Count numbers in the same cell
 
I'd use:

=LEN(A1)-LEN(SUBSTITUTE(A1,",",""))+(A1<"")

The (A1<"") will only add 1 if a1 is not empty.

backmara wrote:

I need to know how many numbers are in the same cell.
Example:
A1 inculdes 12,23,34,45
How I calculating this numbers(Answer:4)?


--

Dave Peterson

Jacob Skaria

Count numbers in the same cell
 
=IF(A1="",0,LEN(A1)-LEN(SUBSTITUTE(A1,",",""))+1)

If this post helps click Yes
---------------
Jacob Skaria


"Jacob Skaria" wrote:

For comma separated values

=LEN(A1)-LEN(SUBSTITUTE(A1,",",""))+1

If this post helps click Yes
---------------
Jacob Skaria


"backmara" wrote:

I need to know how many numbers are in the same cell.
Example:
A1 inculdes 12,23,34,45
How I calculating this numbers(Answer:4)?



All times are GMT +1. The time now is 12:15 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com