Hi there,
Try entering the following code in the VBA module of the worksheet for which you want the warning message to be generated (right-click on the worksheet tab, and select View Code)
Option Explicit
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Dim vUnlockedCell As Variant
Dim rUnlockedCells As Range
' Specify the address of the first user-editable cell here
Set rUnlockedCells = Me.Range("A5")
' Specify the addresses of the remaining user-editable cell here
For Each vUnlockedCell In Array("A8", "B3:B7", "C11:F15")
Set rUnlockedCells = Union(rUnlockedCells, Me.Range(vUnlockedCell))
Next vUnlockedCell
If Union(Target, rUnlockedCells).Address <> rUnlockedCells.Address Then
MsgBox "This selection may not be edited", vbExclamation, "Invalid selection"
End If
End Sub
selection (see note below)
Hope this helps - please let me know how you get on.
Regards,
Greg M
NOTE TO FORUM ADMINISTRATORS
When I enter the word "selection" without highlighting the "t" in the above code, the screen displays the "The website cannot display this page" error. It took me quite a while to figure out exactly which part of my post was causing the error!
Any comments?
Greg M
Bookmarks