How can I have cell B2 return the number of characters in cell B1?

Thanks.

Re: counting characters in a cell by Dave

Dave
Tue Aug 23 09:06:48 CDT 2005

=len(b1)



Glenn wrote:
>
> How can I have cell B2 return the number of characters in cell B1?
>
> Thanks.

--

Dave Peterson

Re: counting characters in a cell by Lewis

Lewis
Tue Aug 23 09:10:31 CDT 2005

Try typing this in B2:
= LEN(B1)


"Glenn" <nospam@yahoo.com> wrote in message
news:ul1xHt%23pFHA.2628@TK2MSFTNGP10.phx.gbl...
> How can I have cell B2 return the number of characters in cell B1?
>
> Thanks.
>
>



Re: counting characters in a cell by RagDyeR

RagDyeR
Tue Aug 23 09:40:56 CDT 2005

Do you consider <space> as a character?

If you *don't*, this is number of characters, not counting spaces:

=LEN(SUBSTITUTE(B1," ",""))

--

HTH,

RD
=====================================================
Please keep all correspondence within the Group, so all may benefit!
=====================================================

"Glenn" <nospam@yahoo.com> wrote in message
news:ul1xHt%23pFHA.2628@TK2MSFTNGP10.phx.gbl...
How can I have cell B2 return the number of characters in cell B1?

Thanks.