boblarson
Smeghead
- Local time
- Today, 09:20
- Joined
- Jan 12, 2001
- Messages
- 32,059
Is there a way to only get the month and day from this? The file names I am getting do not include the year (they can't make anything too easy). The file names will always look something like this "Log Parser 6-26.zip". My goal is to get this automated to the point, that the everyday users will not have to go into the code and update the month and day manually. If it would be easier, I could add a text field to my form for the user to enter the month and day for today. However, I'm not sure how to get that to transfer through the function either. What do you suggest?
Just like this:
"C:\Data\Log Parser " & Month(Date()) & "-" & Day(Date()) & & ".zip"