Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have the following code that saves one sheet to a folder. What I`m after is
to save the sheet so that it can not be altered and rename the tap name to the contents of cell "E1". Also I would like to keep adding the same sheet to the same folder but with different Tap name.........ie 2006, 2007, 2008 so on. Here is the code I have so far: Private Sub CommandButton1_Click() Dim myFileName As String With ActiveWorkbook Worksheets("Sheet2").Copy 'to new workbook With ActiveSheet With .UsedRange ..Copy ..PasteSpecial Paste:=xlPasteValues 'remove formulas??? End With 'pick up the name from some cells??? myFileName = .Range("e1").Value & ".xls" myFileName = "C:\Documents and Settings\All Users\Desktop\ & myFileName" ..Parent.SaveAs Filename:=myFileName, FileFormat:=xlWorkbookNormal ..Parent.Close savechanges:=False End With End With End Sub -- George |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Save a single worksheet in Excel as a single file. | New Users to Excel | |||
Additional file with no extension created during File Save As proc | Excel Discussion (Misc queries) | |||
Excel XP: File name in Title Bar not changed after Save As... | Excel Discussion (Misc queries) | |||
Macro to save a file as | Excel Discussion (Misc queries) | |||
Weekly Transaction Processing | Excel Worksheet Functions |