Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default script to change filename

thanks! I'll add this in and see how it works.

"Tom Ogilvy" wrote:

To rename an Excel Workbook, you have to save it as the new name

With ActiveWorkbook
.SaveAs Filename:=.Path & "\" & _
Worksheets("Sheet1").Range("A1").Text & _
Worksheets("Sheet1").Range("B9").Text & _
".xls"
End With


To maintain the date, after getting the date you want, change it to a
constant with:

With Worksheets("Sheet1").Range("A1")
.Value = .Value
End With

or skip the formula and do

With Worksheets("Sheet1").Range("A1")
.Value = Date
End With

--
Regards,
Tom Ogilvy



"jeramie" wrote in message
...
i am looking for a script or macro that change the name of a werksheet

file
to the contents of two cells(one is a date, the other, a users name), the
first time the file is saved. the file is opened from a template named

daily
reports.xlt. Also, i can get the current date to show in the appropriate
cell.... but when i open the file a week later, the date changes to the
current date.




  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default script to change filename

well.... I got it working with a "private sub workbook_open()", but I need it
to save 'after' The username and date are put in the cells. I thought I could
get it going with an exit event or a lostfocus, but I can't seem to get the
syntax right.

"jeramie" wrote:

thanks! I'll add this in and see how it works.

"Tom Ogilvy" wrote:

To rename an Excel Workbook, you have to save it as the new name

With ActiveWorkbook
.SaveAs Filename:=.Path & "\" & _
Worksheets("Sheet1").Range("A1").Text & _
Worksheets("Sheet1").Range("B9").Text & _
".xls"
End With


To maintain the date, after getting the date you want, change it to a
constant with:

With Worksheets("Sheet1").Range("A1")
.Value = .Value
End With

or skip the formula and do

With Worksheets("Sheet1").Range("A1")
.Value = Date
End With

--
Regards,
Tom Ogilvy



"jeramie" wrote in message
...
i am looking for a script or macro that change the name of a werksheet

file
to the contents of two cells(one is a date, the other, a users name), the
first time the file is saved. the file is opened from a template named

daily
reports.xlt. Also, i can get the current date to show in the appropriate
cell.... but when i open the file a week later, the date changes to the
current date.




  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 18
Default script to change filename

tom, I got it all working right, but noe my boss wants me to have it save
each file into a folder based on the month.... any suggestions?

"jeramie" wrote:

thanks! I'll add this in and see how it works.

"Tom Ogilvy" wrote:

To rename an Excel Workbook, you have to save it as the new name

With ActiveWorkbook
.SaveAs Filename:=.Path & "\" & _
Worksheets("Sheet1").Range("A1").Text & _
Worksheets("Sheet1").Range("B9").Text & _
".xls"
End With


To maintain the date, after getting the date you want, change it to a
constant with:

With Worksheets("Sheet1").Range("A1")
.Value = .Value
End With

or skip the formula and do

With Worksheets("Sheet1").Range("A1")
.Value = Date
End With

--
Regards,
Tom Ogilvy



"jeramie" wrote in message
...
i am looking for a script or macro that change the name of a werksheet

file
to the contents of two cells(one is a date, the other, a users name), the
first time the file is saved. the file is opened from a template named

daily
reports.xlt. Also, i can get the current date to show in the appropriate
cell.... but when i open the file a week later, the date changes to the
current date.




Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Change Filename in Macro Havenstar Excel Discussion (Misc queries) 3 January 16th 09 05:27 PM
Macro to change filename of the Hyperlink maperalia Excel Programming 0 November 1st 05 11:59 PM
Recorded macro: What happens if I change filename? [email protected] Excel Discussion (Misc queries) 2 January 26th 05 11:54 PM
Change Filename Planner Excel Programming 3 August 11th 04 03:43 PM
script detecting the change of active cell Jack Excel Programming 1 February 12th 04 01:59 AM


All times are GMT +1. The time now is 08:37 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"