Hi,
How do I count the number of digits within a cell.
4,5,6,7
The answer should be four. I don't want to count the commas.
Thanks,
Tom G
RichardSchollar - 18 Dec 2006 09:05 GMT
Hi Tom
Something like this will work:
=LEN(SUBSTITUTE(A1,",",""))
Best regards
Richard
> Hi,
>
[quoted text clipped - 7 lines]
>
> Tom G
Tom G - 18 Dec 2006 09:14 GMT
>Hi Tom
>
[quoted text clipped - 17 lines]
>>
>> Tom G
Thanks, did the trick.