Computing.Net > Forums > Office Software > Excel, capital letter entry

Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.

Excel, capital letter entry

Reply to Message Icon

Name: Pugwash (by John Gregory)
Date: July 8, 2007 at 09:53:22 Pacific
OS: XP Pro
CPU/Ram: P4 2.5GHz / 512MB
Comment:

I should know this & can't easily find the answer, help please.

In Excel 2007 I want to make Text entries in a column that should always be in capital letters, I can't for the life of me remember / think how to set this up, done it before, but .... it's an age thing!

John

It's not that I can't remember things as I get older, it's just that my hard drive's full.



Sponsored Link
Ads by Google

Response Number 1
Name: DerbyDad03
Date: July 8, 2007 at 12:41:15 Pacific
Reply:

I can think of 3 options:

1 - Use the Caps Lock key
2 - Use =UPPER(A1) in another column
3 - Use a Worksheet_Change macro as follows:

Right click the sheet tab and choose View Code. Paste the following code into the window. After text is entered anywhere in column A, it will be converted to upper case.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then Target = UCase(Target)
End Sub

Hope that helps!



0

Response Number 2
Name: Jennifer SUMN
Date: July 8, 2007 at 12:48:27 Pacific
Reply:

I can think of two ways: Press the Caps Lock key before typing, or use the =UPPER Formula to copy the data as all caps to another cell/sheet.


Life's more painless for the brainless.


0

Sponsored Link
Ads by Google
Reply to Message Icon

Related Posts

See More







Post Locked

This post is quite old and has been locked from receiving new replies. Please create a new posting instead.


Go to Office Software Forum Home


Sponsored links

Ads by Google


Results for: Excel, capital letter entry

capital letter to normal www.computing.net/answers/office/capital-letter-to-normal/552.html

Excel: Count equal entries www.computing.net/answers/office/excel-count-equal-entries/6946.html

Excel: highlight duplicate entries www.computing.net/answers/office/excel-highlight-duplicate-entries/5159.html