I'm trying to make a command button in Excel, but after a lot of searching and trying different codes on the internet I can't seem to find one that suits my personal needs. I want this to happen after I press the button:
- Export and save the opened Excel file to another file location, I.e. c:/test.
- The name of the document should be the same as the Excel file.
So far the best code I have found after scavenging the internet is this. The problem is that the end user has to physically press "save" in order to save the file.
Dim folderPath As String Dim csvFile As String folderPath = "C:\Users\username\Documents" csvFile = Application.GetSaveAsFilename(InitialFileName:=folderPath, _ FileFilter:="CSV Files (*.csv), *.csv", Title:="Save As CSV") If csvFile <> "" And csvFile <> "False" Then Application.ScreenUpdating = False ActiveSheet.Copy On Error Resume Next ActiveWorkbook.SaveAs fileName:=csvFile, FileFormat:=xlCSV, _ Password:="", WriteResPassword:="", ReadOnlyRecommended:=False, CreateBackup:=False, ConflictResolution:=xlUserResolution On Error GoTo 0 'Close .csv workbook, leaving original workbook open ActiveWorkbook.Close SaveChanges:=False Application.ScreenUpdating = True End If End Sub