View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Stuart[_19_] Stuart[_19_] is offline
external usenet poster
 
Posts: 7
Default sheet code problem

with the following procedure entered into the sheet code of "Sheet1" the
method fails why?

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
Sheets("Sheet2").Select
Range("A1").Select
End Sub


I can enter the above code into a normal macro in a normal module then call
that sub fro the sheet code. but that seems daft, why doesn't it work
directly?



stuart