Hi, Graig,
maybe just lock the cells you donīt wan tto be entered and apply Protection like
Sub EF965258()
With ActiveSheet
.Protect DrawingObjects:=True, _
Contents:=True, _
Scenarios:=True, _
AllowFormattingCells:=True
.EnableSelection = xlUnlockedCells
End With
End Sub
Regarding the Worksheet_SelectionChange-event I just come up with soemthing like
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Target, Range("Table1")) Is Nothing Then
Select Case Target.Column
Case 4, 6 To 8, 10, 14
MsgBox "Cells from this column should not be used"
Target.Offset(0, 1).Select
Case Else
End Select
End If
End Sub
Code for this is disabled in the attached workbook.
Ciao,
Holger
Bookmarks