active cells in range
How do I include a second range "Vl2:AD10" in the string and Me.Range("Z1")
and double click to set the active cell to 0?
"gocats" wrote:
Thanks Bob
Absolutly brilliant!
"Bob Phillips" wrote:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Const WS_RANGE As String = "L2:T10"
On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range(WS_RANGE)) Is Nothing Then
With Target
If .Value 0 Then
.Offset(11, -10).Value = Me.Range("P1").Value
End If
End With
End If
ws_exit:
Application.EnableEvents = True
End Sub
'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.
--
HTH
RP
(remove nothere from the email address if mailing direct)
"gocats" wrote in message
...
If any cell (with value 0) in the range L2:T10 is selected I wish to
update
the corresponding cell in the range B13:J21 with the value in $P$1.
|