Consulting

Results 1 to 3 of 3

Thread: Excel Macro to save with Current Date?

  1. #1

    Excel Macro to save with Current Date?

    I have a spreadsheet which I need to save every day and if possible, I'd like to create a VBA to do this for me as it would be quicker.

    I need it to save to: W:\Common\PricingReports\Daily

    The file name would be: 'Daily Automated BB Prices Upload ' and then the date after it (eg. Daily Automated BB Prices Upload 31/08/2015)



    is this possible at all..? All help is greatly appreciated!


    EDIT:: Found solution myself
    Last edited by roxnoxsox; 08-31-2015 at 04:21 AM.

  2. #2
    @ roxnoxsox
    Would you be so kind and show the solution for other people that look for a fix for the same problem.
    Thank you very much.

  3. #3
    Yep, no problem! See the code I used as below:

        ActiveWorkbook.SaveAs ("W:\Common\Pricing Reports\Daily\Daily Automated BB Prices Upload " _
                                                                                                                                                    & Format(Now(), "DD-MM-YYYY") & ".xlsx")

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •