View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Pete Kipe Pete Kipe is offline
external usenet poster
 
Posts: 2
Default How to position to a specific sheet before saving

Many thanks, Jim. Works perfectly now. Pete

"Jim Thomlinson" wrote:

Try...

Set oSheet = oWB.Worksheets(1)
oSheet.Select
oWB.SaveAs (msExcelPath & msExcelFileName)

--
HTH...

Jim Thomlinson


"Pete Kipe" wrote:

I'm creating an Excel workbook from VB6 that contains exported SQL Server
data. The workbook can contain more than one sheet - when I'm ready to save
it, how can I reposition to the first sheet? I've tried the following code,
but when re-opening the workbook it opens to the last sheet created:

Set oSheet = oWB.Worksheets(1)
oWB.SaveAs (msExcelPath & msExcelFileName)

Any help would be appreciated. Thanks!