How to rename the worksheet name "Sheet1" to "File1" in VBA?
My VBA coding as follows:
Sub Copyfile()
FileCopy ("C:\Data2006.xls"), C:\Book1.xls
End Sub
How to rename the worksheet name "Sheet1" to "File1" in VBA?
My VBA coding as follows:
Sub Copyfile()
FileCopy ("C:\Data2006.xls"), C:\Book1.xls
End Sub
here are four codes you can use
Sub Macro2()
'
ActiveSheet.Name = "File1"
End Sub
Sub Macro3()
'
ActiveSheet.Name = Range("a1")
End Sub
Sub Macro6()
'
Sheets(1).Name = "File1"
End Sub
Sub Macro7()
'
Sheets(1).Name = Sheets(2).Range("A1")
End Sub
Last edited by davesexcel; 11-29-2006 at 03:33 AM.
Hi
If you use Workbooks.Add 1 then you will create a new workbook with just 1 sheet, which you can then delete at the end.
Maybe something like
![]()
Please Login or Register to view this content.
--
Regards
Roger Govier
Microsoft Excel MVP
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks