View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
John[_133_] John[_133_] is offline
external usenet poster
 
Posts: 6
Default Works in module but not in project

I created the following module by doing a macro record. It works by running
it within the module but when I put in a project, I get a 1004 error on the
range select. The xls file is visable while I am stepping (F8). I even did
a call statement and get the same error and change the project from Private
to Public. What am I missing?

Workbooks.Open Filename:="C:\temp\jul 07.xls"
Worksheets(2).Activate
Range("B216:Y242").Select
Selection.Copy

John