I want to merge two Worksheet_Change events.
The aim of the code is to convert any uppercase text in the cell ranges given to lowercase.
I tried copying both into the same Worksheet_Change, but Excel crashed.
Range 1:
Private Sub Worksheet_Change(ByVal Target As Range) Dim ccr As Range Set ccr = Range("C6") For Each Cell In ccr Cell.Value = LCase(Cell) Next Cell End Sub Range 2:
Private Sub Worksheet_Change(ByVal Target As Range) Dim acr As Range Set acr = Range("C9:G9") For Each Cell In acr Cell.Value = LCase(Cell) Next Cell End Sub