As I use my multi-page userform I would like to save periodically so I thought it a good idea to add a 'save' and a 'save as' command button to the userform. Looking online it appears the command button would be coded as such:

Private Sub SaveCommandButton_Click()
    ActiveWorkbook.Save
End Sub
Would this mean the 'save as' command button would be coded as such?:

Private Sub SaveCommandButton_Click()
    ActiveWorkbook.SaveAs
End Sub
The reason I want both is the first time the user saves the form they need to save it in a different location and rename it accordingly. The rest of the times it will just be to save as data as inputed so nothing is lost.

Thank you!