how do I format a cell to display its contents in Upper case?

G

Guest

I'm entering information in a spreadsheet that gets uploaded to a database.
The contents of some of the cells need to be in uppercase.
Is there a way to format the cell in such a way that it changes the case of
the content to upper case. So, if I type in ser, the cell content changes to
SER.
 
G

Guest

you need VBA to do this , not formatting. in the Worksheet_Change event,
Target.value=Ucase(target.Value)
 

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