Save a single sheet from a workbook

  • Thread starter Thread starter JAMES T.
  • Start date Start date
J

JAMES T.

Is there a way to save a single sheet from a workbook instead of saving
the whole book.
 
No. The best you can do is delete all the other sheets
and save the workbook under a new name.

HTH
Jason
Atlanta, GA
 
You can do it with VBA

Sub SaveThis()
Dim sFilename As String
Activesheet.Copy
sFilename = Application.GetSaveAsFilename( _
fileFilter:="Excel Files (*.xls), *.xls")
If sFilename <> False Then
ActiveWorkbook.SaveAs sFilename
End If

End Sub


--

HTH

RP
(remove nothere from the email address if mailing direct)
 
Sure. Choose Edit/Move or Copy Sheet and copy the sheet to a new
workbook. Save the workbook.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top