I am using the following code to save the active sheet as a new workbook
ActiveSheet.Copy
ActiveSheet.Name = sht_name
filesavename = Application.GetSaveAsFilename(InitialFileName:=ActiveSheet.Name, _
filefilter:="Excel Workbook (*.xls), *.xls"..............
I need to save one other sheet from the same workbook along with the active sheet.
Thanks
ActiveSheet.Copy
ActiveSheet.Name = sht_name
filesavename = Application.GetSaveAsFilename(InitialFileName:=ActiveSheet.Name, _
filefilter:="Excel Workbook (*.xls), *.xls"..............
I need to save one other sheet from the same workbook along with the active sheet.
Thanks