Excel locks with a worksheet macro and protection on

spnnrmn

New Member
Joined
Jan 26, 2005
Messages
2
I have the following macro on my worksheet to test to see if the user is on cells in column G$

/code
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim col As String
col = Left(Target.Address, 2)
'if the user clicks in the products col, then pop a userform
'that can parse and store the products
If col = "$G" Then
'macro
frmProducts.Show
End If
End Sub
/code

with protection off, things are fine. However turning protection on and having the cursor in an A$ cell, the user can press the left arrow and lock Excel.

Any suggestions on how to stop this from happening?

Thanks,
Philip
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Here's a better structure to detect a target match. I tested this and it works fine. If excel freezes with it, then it must be your form.

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim col As Range
Set col = Intersect(Target, Range("G:G"))
If Not (col Is Nothing) Then
     frmProducts.Show
End If
End Sub

HTH
Cal
 
Upvote 0

Forum statistics

Threads
1,215,054
Messages
6,122,893
Members
449,097
Latest member
dbomb1414

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