View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Shunt Shunt is offline
external usenet poster
 
Posts: 14
Default Opening a ReadOnly file in Excel VBA



Try this:

Application.Workbooks.Open _
Filename:=JobListPath, IgnoreReadOnlyRecommended:=True

Shunt