Dan wrote:

This is a niggle, doesn't qualify as a nag, somewhat of a curiosity,
but definitely a "would be nice if".  <g>

I would like a way for lowercase letters entered in an Excel cell to
automagically be uppercased when focus leaves the cell.
Dan,

Here's one way to upper whatever value is entered in cell G1:

Private Sub Worksheet_Change(ByVal Target As Excel.Range)

   Application.EnableEvents = False
If Target.Row = 1 And Target.Column = 7 Then
       Target.Value = UCase(Target.Value)
   End If
Application.EnableEvents = True End Sub

Bill


As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:
Replies:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.