Can't get my code to work
Got it.
Apologies for being vague, but used Ossies code and Paul's "lose the .me"
advice and it works now.
It is on a User Form btw
--
Traa Dy Liooar
Jock
" wrote:
Hi
Replace
Intersect(Target.Me.Range("L4:L10000"))
with
Intersect(Target, Me.Range("L4:L10000"))
What does "Me" refer to here? Try leaving it out
Intersect(Target, Range("L4:L10000"))
regards
Paul
On Sep 7, 11:07 am, Jock wrote:
Hi all,
Could somebody look at the following code and, essentially, make it work
please?
Private Sub CommandButton2_Click()
Dim Target As Range
On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target.Me.Range("L4:L10000")) Is Nothing Then
With Target
If .Value = "P" Then
.Offset(0, 1).Value = TextBox1.Text 'copies text box data to cell
End If
End With
'Cancel = True
End If
TIA
--
Traa Dy Liooar
Jock
|