transfer spreadsheet and view

  • Thread starter Thread starter briank
  • Start date Start date
B

briank

I am using the docmd.transferspreadsheet code from a
command button on my form. The Excel spreadsheet is now
being saved at a a specific location on the network
drive. However, what I really would like to do is to
give the user the option to place this file anywhere they
want and then to automatically pull up the Excel file to
view. Can this be done?
 
One possible way:

If MsgBox("Do you want to view the file?",vbYesNo") =
vbYes Then
FollowHyperlink strExcelFileName
End If


Chris Nebinger
 
Back
Top