Hi All,
now I open file like this:
Works ok.
It's possibility to do it somethig like in excel vb:
?
Please help me. Any advice welcome.
regards,
PvK
now I open file like this:
Code:
Dim folder As String
folder = InputBox("Location of the 'MixMax_Deleted' file :")
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "Deleted", folder & "\Deleted.xls", True
Works ok.
It's possibility to do it somethig like in excel vb:
Code:
Set wksDest = Worksheets("Sheet1")
MsgBox "Open file with source data"
strFile = Application.GetOpenFilename( _
FileFilter:="Excel Files (*.xls), *.xls)", _
Title:="Select a File", _
MultiSelect:=False)
If strFile = "False" Then
Exit Sub
End If
Please help me. Any advice welcome.
regards,
PvK