Code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Target.Cells.Count = 1 Then
Target.Value = UCase(Target.Value)
End If
End Sub
I have this vba to change all lowercase to uppercase in the workbook. However, I would like to use this macro only on c12:c19 and
c21:33. Is there any way to change dynamic range to setup range?
Thank you!