Forum Discussion
Gloria Mendez
Oct 31, 2018Copper Contributor
Excel for MAC, Version 16.16.2
Is there a way to format an entire empty column or row so the text I enter is all caps? gogimendez@gmail.com
Lorenzo Kim
Oct 31, 2018Bronze Contributor
try:
code must be on the specific sheet
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
[A1:B20] = [INDEX(UPPER(A1:B20),)]
On Error GoTo 0
End Sub
change the range to suit.
HTH
code must be on the specific sheet
Private Sub Worksheet_Change(ByVal Target As Range)
On Error Resume Next
[A1:B20] = [INDEX(UPPER(A1:B20),)]
On Error GoTo 0
End Sub
change the range to suit.
HTH