P
Philosophaie
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
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