One VBA code upsetting another

Holbeche

New Member
Joined
Jun 3, 2018
Messages
2
I have an excel sheet where i have written code so that certin range of cells are always CAPS. I have also added a button to clear ranges of cells once the form has been saved so that it is ready to fill it out again without having to open up a new template.
The range that has the uppercase code launches the debugger and i have to open up a new template for it to work the second time around.

Any ideas how to fix? The line highlighted in red is the one that needs debugging.



Private Sub Worksheet_Change(ByVal Target As Excel.Range)
If Intersect(Target, Range("B3:E8")) Is Nothing Then Exit Sub

Application.EnableEvents = False
Target = UCase(Target)
Application.EnableEvents = True

End Sub
 

Excel Facts

Fastest way to copy a worksheet?
Hold down the Ctrl key while dragging tab for Sheet1 to the right. Excel will make a copy of the worksheet.
Holbeche,

Welcome to the Board.

You might try the following...

Code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo errHandler
If Intersect(Target, Range("B3:E8")) Is Nothing Or Target.Count > 1 Then Exit Sub
Application.EnableEvents = False
Target = UCase(Target)
errHandler:
Application.EnableEvents = True
End Sub

Cheers,

tonyyy
 
Upvote 0
Cheers tonyyy
Works perfectly.
Many thanks for your help!!

Holbeche,

Welcome to the Board.

You might try the following...

Code:
Private Sub Worksheet_Change(ByVal Target As Excel.Range)
On Error GoTo errHandler
If Intersect(Target, Range("B3:E8")) Is Nothing Or Target.Count > 1 Then Exit Sub
Application.EnableEvents = False
Target = UCase(Target)
errHandler:
Application.EnableEvents = True
End Sub

Cheers,

tonyyy
 
Upvote 0

Forum statistics

Threads
1,223,896
Messages
6,175,260
Members
452,627
Latest member
KitkatToby

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top