Question : Don't Delete the SheetTab just Rename it.

I am using this line to delete a sheet, but I do not want to delete it now.  I just want to rename it to: YourFeedLibrary2

How would I rewrite this line to just rename it?
Please advise and thanks. -R-
1:
wbkDest.Sheets("YourFeedLibrary").Delete

Answer : Don't Delete the SheetTab just Rename it.

Just use the Name property:


wbkDest.Sheets("YourFeedLibrary").Name = "New Name"
Random Solutions  
 
programming4us programming4us