Protection with excel

J

jeff

Hi,

Something like this may help. hook up to commandbutton1
on your form.

jeff

Private Sub CommandButton1_Click()
getnamesave
End Sub

Sub getnamesave()
Do
fName = Application.GetSaveAsFilename
(fileFilter:="Text Files (*.xls), *.xls")
Loop Until fName <> False
Worksheets("Sheet1").Range("A1") = fName
ActiveWorkbook.SaveAs Filename:=fName
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top