Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.newusers
|
|||
|
|||
![]()
Assign this macro to button on your Toolbar.
Sub New_Name() Application.ScreenUpdating = False Application.DisplayAlerts = False With ActiveWorkbook .SaveAs Filename:=ActiveWorkbook.Path _ & "\" & ActiveSheet.Range("C3").Value & ".xls" 'If file has never been saved it will have no path 'you must supply a path with this code instead of above ' .SaveAs Filename:="C:\Gordstuff" _ ' & "\" & ActiveSheet.Range("C3").Value & ".xls" End With Application.DisplayAlerts = True Application.ScreenUpdating = True End Sub Gord On Sun, 29 Jan 2012 10:51:48 -0800 (PST), Garry wrote: In Excel 2003, I have a spreadsheet which i fill in for differant items. I then save a copy with the item number which is in Cell C:3. Is there a way to automate this process, Ie to-do a save as with the contents of cell C:3, from a button click of the toolbar. Thanks Garry |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Getting data from 2 differant colums | Excel Worksheet Functions | |||
Referancing differant sheets | Excel Worksheet Functions | |||
Printing differant rows | Excel Programming | |||
Go to Differant Cells After entering | Excel Programming | |||
Going to differant Cells after Entering | Excel Programming |