Macro save from .xlsm to .xlsx in folder as current date "dd-mm.yy.xlsx"

Vbalearner85

Board Regular
Joined
Jun 9, 2019
Messages
139
Office Version
  1. 2016
Platform
  1. Windows
Hi,

I am using below macro to save .xlsm file in particular folder in format "dd-mm-yy.xlsm", which is working fine.

Tried saving as "xls" format, which gives compatibility issues and shows file as corrupt

But if I want to save current file as ".xlsx" by replacing format in below macro in Excel 2016, it is giving error "Run-time error '1004'-The extension cannot be used with the selected file type". Please assist

Sub documentssave()

Application.DisplayAlerts = False
Application.Calculation = xlManual

ActiveWorkbook.SaveAs ("D:\Data Hub\" & Format(Now(), "dd-mm-yy") & ".xlsm")

Application.DisplayAlerts = True
Application.Calculation = xlAutomatic

End Sub
 

Excel Facts

What did Pito Salas invent?
Pito Salas, working for Lotus, popularized what would become to be pivot tables. It was released as Lotus Improv in 1989.
Try this:
VBA Code:
    Application.DisplayAlerts = False
    ThisWorkbook.SaveAs "D:\Data Hub\" & Format(Date, "dd-mm-yy") & ".xlsx", xlOpenXMLWorkbook
    Application.DisplayAlerts = True
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,598
Members
449,089
Latest member
Motoracer88

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