Creat Formula for Counting Text

T

Tim M

Can you elaborate? do you want to count the number of cells that have text
or do you want to actually count the number of letters of text in each cell?
 
B

Bob Phillips

Probably

=COUNTIF(A:A,"text")

or maybe

=COUNTIF(A:A,"*text*")

--
HTH

Bob Phillips

(remove xxx from email address if mailing direct)
 
R

RagDyeR

Do you mean count characters (including spaces):

=LEN(A1)

Don't count spaces:

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

HTH,

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


How do I create a formula to count Text in Cells?
 
Top