Auto save to a different format

DPChristman

Board Regular
Joined
Sep 4, 2012
Messages
177
Office Version
  1. 365
Platform
  1. Windows
I am working with a successful macro in saving the document via clicking a macro control button.

However, I was wondering if there is a way to have the document save to another format.

The reason is that some of the people on distribution for this form are pulling it up on their cellphones, tablets, etc.

These devices don't all have the ability to open macro enabled spreadsheets.

Rather than have to have these people download new apps, it would be easier (for them anyway), if the form would automatically save to a non macro format.

I already have the macro required functions removed from the form by time the document has to be saved.

This is what I currently use.

Any thoughts?



Sub Saveform()


Dim FName As String
Dim FPath As String

FPath = "C:"
FName = Sheets("Form").Range("I4").Text
ThisWorkbook.SaveAs Filename:=FName


End Sub
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes

Forum statistics

Threads
1,223,228
Messages
6,170,871
Members
452,363
Latest member
merico17

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