Using VBA to update a file daily with data from another daily workbook

BYahr

New Member
Joined
Jul 12, 2023
Messages
4
Office Version
  1. 365
Platform
  1. Windows
I have 21 "individual" spreadsheets that are updated each day with data that has been collected into another spreadsheet template. A template is used to collect the data so it is always in the same format and the files are named based upon the date. Example: Worksheet mm.dd.yyyy (with multiple worksheets) is used to update IOA ADM.xlsx, and USF ADM.xlsx, Etc. I'm struggling with 2 things: how to code to account for the date change in the file name and best place to locate the macro button so as not to require excessive storage over time. (This happens to 21 spreadsheets every day.) I have part of the overall macro (VBA) worked out but it depends on activating to a distinct file name (i.e. "Adv MIMO Worksheet 04.19.2023.xlsm"). How do I adjust this when that file name will change each day?
 

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
let vba determine the date part
VBA Code:
Sub testing()
    MsgBox "the workbook name for yesterday was" & vbLf & _
    "Adv MIMO Worksheet " & Format(Date - 1, "mm.dd.yyyy") & ".xlsm" & vbLf & vbLf & _
    "the workbook name for today is" & vbLf & _
    "Adv MIMO Worksheet " & Format(Date, "mm.dd.yyyy") & ".xlsm" & vbLf & vbLf & _
    "the workbook name for tomorrow will be" & vbLf & _
    "Adv MIMO Worksheet " & Format(Date + 1, "mm.dd.yyyy") & ".xlsm"
End Sub
 
Upvote 0
This has taken quite awhile to get working. Thanks for all the ideas and information. I have likely taken a long way around the issue but it is currently working.

Each individual spreadsheet has it's own macro tied to a button on the template worksheet. The date issue is handled by selecting the date on the worksheet, copy it to a neighboring cell and change the format from dd/mm/yyyy to dd.mm.yyyyy. Using DIM statements to identify the current day's workbook with the new format as part of the file name, then proceeding through the many steps to move data from the worksheet to the destination cells in the individual spreadsheets.

This has been 'fun' to learn. There are a few more things I can envision Excel being able to accomplish for me and I'm still working on those.

Again thank you to the forum for all the assistance. I'm sure I could not have done it without you.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,093
Messages
6,123,069
Members
449,090
Latest member
fragment

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top