I have the code below that saves each tab as a new file. However, I have a few tabs that I don't want saved as files. Can someone help me on how to exclude specific tabs? I want to exclude on labeled "Original" and one labeled "Work". Thank you!
Code:
For sht = 1 To ThisWorkbook.Sheets.Count
DataCol = 1 'is there a specific column that will have data?
If Worksheets(sht).Cells(11, DataCol) = "" Then GoTo DoNotSaveThisTab
MyName_Start = "filepath\filename" & ThisWorkbook.Sheets(sht).Name & " " & Format(Date, "mmddyy")
Sheets(sht).Select
ActiveSheet.Copy
With ActiveWorkbook
.SaveAs MyName_Start & ".xls", FileFormat:=xlExcel8, _
Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, _
CreateBackup:=False
.Close 0
End With
Next sht