Format cell to convert to Upper case
Hi,
Right click your sheet tab, view code and paste this in. Works on Column A
only but that can be changed to any range
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column = 1 Then
If Not Target.HasFormula Then
Target = UCase(Target)
End If
End If
End Sub
Mike
"widman" wrote:
Is there a way to format an individual cell/column so that what is typed in
that cell is automatically shown as Upper case?
ei: x7898 would show as X7898 no matter how it was typed.
|