ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Worksheet Functions (https://www.excelbanter.com/excel-worksheet-functions/)
-   -   counting the number of attributes/numbers in a cell (https://www.excelbanter.com/excel-worksheet-functions/215904-counting-number-attributes-numbers-cell.html)

Mortir

counting the number of attributes/numbers in a cell
 
Is there a way I could count how many numbers are in a cell:

example:

in cell A1 I have a number: 50153,25 now id like to count how many
numers are in the cell so the result should be 7 (the numers are
5015325 =7 numbers)

Is there a way to do this? tnx for your help

OssieMac

counting the number of attributes/numbers in a cell
 
If the number is in cell A1 then

=LEN(A1)

Even though the number is formatted with a comma, the actual length is still
only the number of numerals because the comma is only a formatting character
and is not counted.


--
Regards,

OssieMac


"Mortir" wrote:

Is there a way I could count how many numbers are in a cell:

example:

in cell A1 I have a number: 50153,25 now id like to count how many
numers are in the cell so the result should be 7 (the numers are
5015325 =7 numbers)

Is there a way to do this? tnx for your help


OssieMac

counting the number of attributes/numbers in a cell
 
Have had another look and I have misinterpreted. Try the following instead
where the number is in cell A1

=LEN(TRIM(REPLACE(A1,FIND(",",A1,1),1,"")))

--
Regards,

OssieMac


"Mortir" wrote:

Is there a way I could count how many numbers are in a cell:

example:

in cell A1 I have a number: 50153,25 now id like to count how many
numers are in the cell so the result should be 7 (the numers are
5015325 =7 numbers)

Is there a way to do this? tnx for your help


Mortir

counting the number of attributes/numbers in a cell
 
On Jan 9, 9:48*am, OssieMac
wrote:
Have had another look and I have misinterpreted. Try the following instead
where the number is in cell A1

=LEN(TRIM(REPLACE(A1,FIND(",",A1,1),1,"")))

--
Regards,

OssieMac



"Mortir" wrote:
Is there a way I could count how many numbers are in a cell:


example:


in cell A1 I have a number: 50153,25 now id like to count how many
numers are in the cell so the result should be 7 (the numers are
5015325 =7 numbers)


Is there a way to do this? tnx for your help- Hide quoted text -


- Show quoted text -


WoW!! Great, works perfect. Tnx very much!!!


All times are GMT +1. The time now is 06:05 AM.

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