MACRO needed to save workbook as xlsx and remove macros

ghp2017

Board Regular
Joined
Dec 12, 2017
Messages
51
Hello,

I am trying to build a button that will automatically convert the file from macro enabled to macro disabled version.

I have tried the following but it's not really working correctly.
-----------------------------------------------------------------------------------------------------------------------------------------
Sub Final_SAVE_to_GDrive_Inventory_Folder()
'
' Final_SAVE_to_GDrive_Inventory_Folder Macro
'


'
Dim FP As String, FN As String
FP = "H:\My Documents\Inventory"
FN = Range("Template!D2").Value
ActiveWorkbook.SAVEAS Filename:=FP & FN & ".xlsx"
End Sub
-------------------------------------------------------------------------------------------------------------------------------------------
I found that if I use ".xls" it will save but I get an warning message and an option to enable the macros.
 

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)
You need to set the fileformat. Record a macro to get the syntax if you don't know.
 
Upvote 0
Modify your code...

Rich (BB code):
Sub Final_SAVE_to_GDrive_Inventory_Folder()
'
' Final_SAVE_to_GDrive_Inventory_Folder Macro
'


'
Dim FP As String, FN As String
FP = "H:\My Documents\Inventory"
FN = Range("Template!D2").Value

Application.DisplayAlerts = False
ActiveWorkbook.SAVEAS Filename:=FP & FN & ".xlsx"
Application.DisplayAlerts = True

End Sub
 
Last edited by a moderator:
Upvote 0

Forum statistics

Threads
1,223,898
Messages
6,175,272
Members
452,628
Latest member
dd2

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