Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I have a master wookbook that need to update weekly. The new information
comes from a file that sent to me every week(the name of the file changes to reflect the updated date). I want to use macro to automate this process. Everything work out fine but I don't know how to change the file name in macro. Any advice is highly appreciated. Jason |
#2
![]() |
|||
|
|||
![]()
You could store the file name in a cell in the macro workbook, and
change or recalculate it as required. For example: Sub OpenMyFile() Dim strFilePath As String Dim strFileName As String strFilePath = "c:\Data\" strFileName = Worksheets("Sheet1").Range("A1").Value Workbooks.Open strFilePath & strFileName End Sub Jason wrote: I have a master wookbook that need to update weekly. The new information comes from a file that sent to me every week(the name of the file changes to reflect the updated date). I want to use macro to automate this process. Everything work out fine but I don't know how to change the file name in macro. Any advice is highly appreciated. Jason -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
#3
![]() |
|||
|
|||
![]()
Thanks a lot, Debra.
Jason "Debra Dalgleish" wrote: You could store the file name in a cell in the macro workbook, and change or recalculate it as required. For example: Sub OpenMyFile() Dim strFilePath As String Dim strFileName As String strFilePath = "c:\Data\" strFileName = Worksheets("Sheet1").Range("A1").Value Workbooks.Open strFilePath & strFileName End Sub Jason wrote: I have a master wookbook that need to update weekly. The new information comes from a file that sent to me every week(the name of the file changes to reflect the updated date). I want to use macro to automate this process. Everything work out fine but I don't know how to change the file name in macro. Any advice is highly appreciated. Jason -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
extract date from the most current date | Excel Discussion (Misc queries) | |||
Date Math Problem | Excel Worksheet Functions | |||
date and time | New Users to Excel | |||
Date issue between Windows and Macintosh version | Excel Discussion (Misc queries) | |||
Using formulas to determine date in one cell based on date in anot | Excel Worksheet Functions |