View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Lonnie M. Lonnie M. is offline
external usenet poster
 
Posts: 184
Default Excel 2003 won't run simple code that Excel XP and Excel 2000 will run

As for the second issue try something like this:

Dim DataEntry As Worksheet
Set DataEntry = Workbook("workbookNameHere.xls").Worksheet("Data
Entry")
'OR if data entry is active:
'Set DataEntry = ActiveWorkbook.ActiveSheet
DataEntry.Activate

HTH--Lonnie M.