Thread: worksheet save
View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
JE McGimpsey JE McGimpsey is offline
external usenet poster
 
Posts: 4,624
Default worksheet save

one way:

Public Sub CopySheetToNewWorkbook()
Sheets("Sheet1").Copy
Application.DisplayAlerts = False
With ActiveWorkbook
.SaveAs Filename:="test.xls"
.Close
End With
Application.DisplayAlerts = True
End Sub


In article ,
"vbastarter" wrote:

Looks like sheet dont have save property. I dont want to save the entiire
workbook but Just one sheet(sheet1). How is that possible ?
Thx