Restricting Cell entry to certain letters
In article , Claus Busch
writes
Hi Colin,
Am Tue, 15 Oct 2013 03:01:46 +0100 schrieb Colin Hayes:
Curiously though , it seems to lose focus after other activity on the
sheet.
it seems you desabled events.
Hi Claus
Yes , thank you. That fixed it. It's working perfectly now.
^_^
Best Wishes
Colin
Change the code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Target, Range("B1:B26")) Is Nothing _
Or Target.Count 1 Then Exit Sub
Select Case Target.Value
Case "w", "W", "l", "L", "d", "D"
Target = UCase(Target)
Case Else
Target.ClearContents
End Select
End Sub
and create a standard module and put in following code and run it:
Sub test()
With Application
.EnableEvents = True
.ScreenUpdating = True
End With
End Sub
Regards
Claus B.
|