Thread: Capital Letter
View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
FLKulchar FLKulchar is offline
external usenet poster
 
Posts: 80
Default Capital Letter

Thank you...

Very good,

FLKulchar
"Gary Keramidas" <GKeramidasATmsn.com wrote in message
...
another way

=IF(EXACT(LEFT(A1,1),UPPER(LEFT(A1,1))),"yes","no" )

--


Gary


"F. Lawrence Kulchar" wrote
in message ...
I have a bunch of cells, say A1 thru A50,

each of which is occupied by a text string, such as...

New York or
chicago or
abc or
Abc

etc, etc,etc.

HOW CAN I TEST EACH CELL FOR...WHETHER OR NOT THE STRING BEGINS WITH A
CAPITAL LETTER?????

In other words, chicago will yield..."no"

and, Chicago will yield..."yes".

Please advise,

FLKulchar