View Single Post
  #3   Report Post  
Bob Phillips
 
Posts: n/a
Default

Sivsy,

This will count cells starting with a lower case s

=SUMPRODUCT(--(ISNUMBER(FIND("s",LEFT(A1:A18,1)))))

If you want only s, then use

=SUMPRODUCT(--(ISNUMBER(FIND("s",LEFT(A1:A18,1)))),--(LEN(A1:A18)=1))

--

HTH

RP
(remove nothere from the email address if mailing direct)


"Sivsy" wrote in message
...
Is there a way to distinguish between and count the occurance of lower and
upper case letters in an array ? eg If I have a series of columns

populated
with either uppercase "S" or loercase "s", can i use a formula to count

the
occurance of each type ?