.xlsm file to .xlsx

smakatura

Board Regular
Joined
May 27, 2011
Messages
141
I have a macro enabled document (.xlsm) that I want to save as a standard macro-free document (.xlsx). I am able to do it but it creates a popup asking me if I want to do it and lose the macros. Is there a way to avoid the popup and have it just save the document without the macros.

HTML:
'***********input report date**********************
    Dim rptdate As String
    Dim filename As String
    rptdate = InputBox("enter date of report")
    filename = "Admissions Call Log Master " & rptdate & ".xlsx"
 
' ****Save Master*******************************
       If Len(Dir("C:\Users\smakatura\Documents\call report\Call Reports\Executive Call Log Master\" & rptdate, _
            vbDirectory)) = 0 Then
       MkDir "C:\Users\smakatura\Documents\call report\Call Reports\Executive Call Log Master\" & rptdate
    End If
    ActiveWorkbook.SaveAs filename:= _
        "C:\Users\smakatura\Documents\call report\Call Reports\Executive Call Log Master\" & rptdate & "\" & filename _
        , FileFormat:=xlOpenXMLWorkbook, CreateBackup:=False
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!

Forum statistics

Threads
1,223,896
Messages
6,175,265
Members
452,627
Latest member
KitkatToby

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