Save as that pulls data from Worksheet

jackson1990

Board Regular
Joined
Feb 21, 2017
Messages
56
Hey everyone!

Was wondering if someone could help me out with a mystery. I have a macro that asks the user to save their Excel. I was looking if I could default the Save As Text to be the text from say H16 on the Active Sheet. So instead of taking the default name of the workbook they have currently (say Workbook1), it would default to whatever the text is in H16. I have some code now, but couldn't quite connect how I would get it to default as that. Here's the code.

Code:
Sub Update()

Application.ScreenUpdating = False


Dim wsheet As Worksheet


Sheets("Sheet1").Select


    ActiveWorkbook.RefreshAll
    DoEvents
    
If Worksheets("Sheet1").Range("D14") = Worksheets("Sheet1").Range("F14") Then
    MsgBox "Update Complete", vbInformation + vbOKOnly
    MsgBox "Please save the file in the location you will keep it permanently. If you do not, certain features will not work.", vbExclamation + vbOKOnly


    wsn = Application.GetSaveAsFilename(FileFilter:= _
    "Excel Files (*.xlsm), *.xlsm")
    
    If wsn <> False Then
        ActiveWorkbook.SaveAs _
        Filename:="test", _
        FileFormat:=xlOpenXMLWorkbookMacroEnabled
        
    ActiveSheet.CommandButton1.Enabled = True
    End If
End Sub

Thanks everyone for taking a look!
 

Excel Facts

Who is Mr Spreadsheet?
Author John Walkenbach was Mr Spreadsheet until his retirement in June 2019.
Something like this could be used.
Code:
If Worksheets("Sheet1").Range("D14") = Worksheets("Sheet1").Range("F14") Then
    MsgBox "Update Complete", vbInformation + vbOKOnly
    If Sheets("Sheet1").Range("H16") = "" Then
        MsgBox "The SaveAs destination is not entered in cell H16, You must manually perform the SaveAs action.", vbExclamation + vbOKOnly
    Else
        ActiveWorkbook.SaveAs(ActiveSheet.Range("H16").Value)
    End If
Assuming sheet one is the active sheet, this would check cell H16. If it is empty, it would advise the user to create the file path and name for saving the active workbook. If H16 is NOT empty, then it would automatically save the activeworkbook to the path and filename designated in H16.
 
Upvote 0

Forum statistics

Threads
1,215,632
Messages
6,125,909
Members
449,274
Latest member
mrcsbenson

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