View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
Shane Devenshire[_2_] Shane Devenshire[_2_] is offline
external usenet poster
 
Posts: 3,346
Default test for upper case

Hi,

Try this

=IF(A1<"",EXACT(A1,UPPER(A1)))


--
If this helps, please click the Yes button.

Cheers,
Shane Devenshire


"MusicMan" wrote:

Very close, but blanks also came back true. I can handle them in IF test
though. Thanks very much.

"Tom Hutchins" wrote:

To check A1, in another cell enter

=IF(EXACT(A1,UPPER(A1)),TRUE,FALSE)

Copy as needed. Hope this helps,

Hutch

"MusicMan" wrote:

Is their a function or way to use the UPPER function to test if the contents
on a cell are all Upper case?

Alternatively if someone has a macro to do so I could copy I would appreciate.