Capital Letters Only

G

Guest

Is it possible to ensure that only capital letters are entered into a cell.

I have tried using a list within data-validation but the cell still allows
both upper and lower case entries.

Any ideas would be much appreciated.
Thanks
Simon
 
G

Guest

Use a custom validation (under "allow") and input this formula (under
"formula").

=ISERROR(FIND(UPPER(A1),A1))=FALSE
 
D

Dave Peterson

Another version:

=EXACT(A1,UPPER(A1))

But this does allow:
SIMON #3-1234 JEFFORD
(non-alpha's are ok)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top