Thread
:
Target Range Activation
View Single Post
#
2
Posted to microsoft.public.excel.programming
Don Guillett[_2_]
external usenet poster
Posts: 1,522
Target Range Activation
Detail on what you are trying to do.??
--
Don Guillett
Microsoft MVP Excel
SalesAid Software
"Philosophaie" wrote in message
...
Trying to get Wooksheet_Change to work:
Public rng As Range
Private Sub Workbook_Open()
Dim range1 As Range
Set range1 = Sheet4.Range("D4:F500")
Set rng = range1
'I need a way to access the subroutine Worksheet_Change
'to fire the object Target range. I tried:
'Worksheet_Change(rng) that didn't work.
End Sub
Private Sub Worksheet_Change(ByVal Target As Range)
End Sub
Reply With Quote
Don Guillett[_2_]
View Public Profile
Find all posts by Don Guillett[_2_]