I have a client who wishes to save a worksheet as a workbook. Initially, they asked that each worksheet be saved as a seperate workbook, I found this code and it works great; however; now the story has changed… they want a specific worksheet to be saved as a workbook and for the user to be able to select the location where the sheet was being saved at the point of the VBA being run. Unfortunately, I write VBA in Word and have not worked with Excel VBA at all… any ideas on how we can modify this code to do what they want? Thanx in advance… trish
Sub ExportSheets()
For Each mySht In ActiveWorkbook.Worksheets
mySht.Copy
ActiveWorkbook.SaveAs “C:Excel” & ActiveSheet.Name
ActiveWorkbook.Close
Next mySht
End Sub