Is it possible to have a command button or Macro that can prompt the user the Save As Dialog ?
R Rich May 17, 2006 #1 Is it possible to have a command button or Macro that can prompt the user the Save As Dialog ?
B Bob Umlas, Excel MVP May 17, 2006 #2 Sure - Sub MySave() Application.Dialogs(xlDialogSaveAs).Show End Sub
R Rich May 17, 2006 #3 Thank you! I'm extremely new. How about a some sort of close after the save is made? Private Sub CommandButton1_Click() Application.Dialogs(xlDialogSaveAs).Show Application.Close?? End Sub
Thank you! I'm extremely new. How about a some sort of close after the save is made? Private Sub CommandButton1_Click() Application.Dialogs(xlDialogSaveAs).Show Application.Close?? End Sub