![]() | ![]() | ![]() |
| |||||||
| Forums | Register | Groups | Awards | Arcade | Pets | T-Bucks / T-Store | Invite Your Friends | Blogs | Mark Forums Read |
| Microsoft Applications Discussions about Windows and other MS Products such as Office |
![]() |
| | LinkBack | Thread Tools |
| | #1 (permalink) |
| Civilians | 2 Questions. (1) I would like to set up the row so that ALL LETTERS in that ro would become Capital letter auromatically. (2) In the second row, I would like excel to capitalize the FIRS letter of each word automatically as I type in the cell -- NYBo ----------------------------------------------------------------------- NYBoy's Profile: http://www.excelforum.com/member.php...nfo&userid=836 View this thread: http://www.excelforum.com/showthread.php?threadid=27207 |
|
| | #2 (permalink) |
| Civilians | NYBoy, put this in the worksheet code Private Sub Worksheet_Change(ByVal Target As Range) 'will change row 1 to caps, row 2 to proper On Error GoTo Error_handler With Target If Not .HasFormula Then Application.EnableEvents = False If Target.Row = 1 Then Target.Value = UCase(Target.Value) If Target.Row = 2 Then Target.Value = Application.Proper(Target.Value) Application.EnableEvents = True End If End With Error_handler: Resume Next End Sub -- Paul B Always backup your data before trying something new Please post any response to the newsgroups so others can benefit from it Feedback on answers is always appreciated! Using Excel 2000 & 2003 ** remove news from my email address to reply by email ** "NYBoy" <NYBoy.1eoq5b@excelforum-nospam.com> wrote in message news:NYBoy.1eoq5b@excelforum-nospam.com... > > 2 Questions. > > (1) I would like to set up the row so that ALL LETTERS in that row > would become Capital letter auromatically. > > (2) In the second row, I would like excel to capitalize the FIRST > letter of each word automatically as I type in the cell. > > > -- > NYBoy > ------------------------------------------------------------------------ > NYBoy's Profile: > http://www.excelforum.com/member.php...fo&userid=8360 > View this thread: http://www.excelforum.com/showthread...hreadid=272072 > |
|
![]() |
| Bookmarks |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| A CAPITAL EVENT (Quiz) | conlor | Games/Quizzes | 0 | 03-25-2007 00:15 |
| Jumbled letters | Jeff High | Chit-Chat | 25 | 01-07-2007 00:13 |
| Coverting from 3 letters to 1 | Pookie76 | Microsoft Applications | 5 | 09-21-2005 12:00 |
| capital letters | HGood | Microsoft Applications | 5 | 01-11-2005 23:00 |
| Automatic Capital letter entry | hinterland_1 | Microsoft Applications | 8 | 06-16-2004 03:31 |
![]() | ![]() | ![]() |