Help with Prompt user to input file name and location (1 Viewer)

lookforsmt

Registered User.
Local time
Today, 04:42
Joined
Dec 26, 2011
Messages
672
HI!

I have below code to prompt user to first input location and second prompt to input file name (excel filename "Text" to access table "tbl_Text"

I input the location and file name, but it gives me error
The action or method requires a File Name argument

Code:
Private Sub Import_File_Click()

On Error GoTo Err_Import_File_Click

Dim strFile_Path As String
Dim strTable As String

'Prompt user for file path
strFile_Path = InputBox("Please enter file path")
'Prompt user for name of table to create for imported data
strTable = InputBox("Please enter name of new table")

'Import file, using inputted file path and table name

DoCmd.TransferSpreadsheet acImport, , strFile_Path & strTable

Exit_Import_File_Click:
Exit Sub

Err_Import_File_Click:
If Err.Number = 3011 Then
MsgBox strFile_Path & " is not a valid path, please try again", vbExclamation, "Invalid File Path"
Else
MsgBox Err.Description
End If
Resume Exit_Import_File_Click

End Sub

Can anyone advice me what i am doing wrong.

I am inputting location as E:\Access4.0\Reports and
input File name as Text.xlsx
 

theDBguy

I’m here to help
Staff member
Local time
Yesterday, 17:42
Joined
Oct 29, 2018
Messages
21,496
Hi. Not sure but try either entering E:\Access4.0\Reports\ for the location or change the code to this:
Code:
DoCmd.TransferSpreadsheet acImport, , strFile_Path & "\" & strTable
 

lookforsmt

Registered User.
Local time
Today, 04:42
Joined
Dec 26, 2011
Messages
672
thanks for replying, i tried the suggestion gives me the same error
 

theDBguy

I’m here to help
Staff member
Local time
Yesterday, 17:42
Joined
Oct 29, 2018
Messages
21,496
How about?
Code:
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12xml, "TableName", strFile_Path & "\" & strTable
 

theDBguy

I’m here to help
Staff member
Local time
Yesterday, 17:42
Joined
Oct 29, 2018
Messages
21,496
Hi. Check out the syntax for the TransferSpreadheet method in the Help files and try different formats.
 

lookforsmt

Registered User.
Local time
Today, 04:42
Joined
Dec 26, 2011
Messages
672
Thanks Gasman, i will try the "", i dont want to use file dialog method as the user needs to scroll through many files which is highly likely to select the wrong file.

TheDBGuy, i will try the different format if that works.
 

isladogs

MVP / VIP
Local time
Today, 01:42
Joined
Jan 14, 2017
Messages
18,247
Does the table already exist?

Try hard coding the paths as a test:

Code:
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12xml, "YourTableName", "E:\Access4.0\Reports\Text.xlsx"

If that fails try altering the path to E:\Access4\Reports in case the 4.0 is an issue
 

Gasman

Enthusiastic Amateur
Local time
Today, 01:42
Joined
Sep 21, 2011
Messages
14,361
Thanks Gasman, i will try the "", i dont want to use file dialog method as the user needs to scroll through many files which is highly likely to select the wrong file.

TheDBGuy, i will try the different format if that works.

No don't try that, the site removed the \ from my post. :(
 

lookforsmt

Registered User.
Local time
Today, 04:42
Joined
Dec 26, 2011
Messages
672
Thanks isladDogs, I tried as suggested but still not able to get this through
I am getting a different error now
The Microsoft database engine cannot open or write to this file. E\Access4.0\Reports\'. It is already opened exclusively by another user or you need permission to view and write its data
 

isladogs

MVP / VIP
Local time
Today, 01:42
Joined
Jan 14, 2017
Messages
18,247
OK so check both of the following:
Is the Excel file already open? If so, close it.
Do you have permissions for that folder?

If still not solved, try linking the Excel file to your database & then use an append query to import the data to your table
 

Gasman

Enthusiastic Amateur
Local time
Today, 01:42
Joined
Sep 21, 2011
Messages
14,361
Thanks isladDogs, I tried as suggested but still not able to get this through
I am getting a different error now

Did you type that?, as there is no : and an errant ' ?
 

theDBguy

I’m here to help
Staff member
Local time
Yesterday, 17:42
Joined
Oct 29, 2018
Messages
21,496
Hi. Here's your code with some recommended changes. Please try it out and let us know what happens.
Code:
Private Sub Import_File_Click()  

On Error GoTo Err_Import_File_Click  

Dim strFile_Path As String 
Dim strTable As String  

'Prompt user for file path 
strFile_Path = InputBox("Please enter file path and name (e.g. C:\Folder\File.xlsx)") 

'Prompt user for name of table to create for imported data 
strTable = InputBox("Please enter name of new table")  

'Import file, using inputted file path and table name 
If Dir(strFile_Path)<>"" Then
     DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12xml, strTable, strFile_Path
Else
     MsgBox "The file path you entered is not valid.", vbInformation, "Error"
End If

Exit_Import_File_Click: 
    Exit Sub  

Err_Import_File_Click: 
     If Err.Number = 3011 Then 
        MsgBox strFile_Path & " is not a valid path, please try again", vbExclamation, "Invalid File Path" 
     Else 
        MsgBox Err.Description 
    End If 
    Resume Exit_Import_File_Click  

End Sub
 

Gasman

Enthusiastic Amateur
Local time
Today, 01:42
Joined
Sep 21, 2011
Messages
14,361
You can set a default path for the FileDialog?

I'm thinking, if the user cannot select a correct file from the dialog, typing in the correct name and path is going to be a chore? :D
 

lookforsmt

Registered User.
Local time
Today, 04:42
Joined
Dec 26, 2011
Messages
672
thanks for the code, apologies for the delay. As mentioned earlier i wanted user to type the file name rather selecting from the FileDialog.

I have tried to modify my code and it allows me to import excel into access. The only problem is it disregards the file location in strPath and copies the file placed in Documents. (C:\Users\lookforsmt\Documents)

Code:
Private Sub Import_File_Click()

    On Error GoTo Err_Import_File_Click
    
    Dim strPathFile As String, strFile As String, strPath As String
    Dim strTable As String
    Dim binHasFieldNames As Boolean
 
'Change this next line to True if the first row in Excel worksheet
'has field names

    binHasFieldNames = True

'    strPath = InputBox("Please enter file path")
    strPath = "E:\Access4.0\Reports\New folder\"
    strTable = InputBox("Please enter name of new table")

'    strFile = Dir(strPath & "test.xlsx")

    DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12Xml, "tbl_test", strTable, True
    

Exit_Import_File_Click:
Exit Sub

Err_Import_File_Click:

If Err.Number = 3011 Then
MsgBox strFile_Path & " is not a valid path, please try again", vbExclamation, "Invalid File Path"
Else
MsgBox Err.Description
End If
Resume Exit_Import_File_Click
End Sub

How can i change the location from Documents to strPath location.
 

Cronk

Registered User.
Local time
Today, 10:42
Joined
Jul 4, 2013
Messages
2,772
@lookforsmt, in #8 you wrote
i dont want to use file dialog method as the user needs to scroll through many files which is highly likely to select the wrong file.
I think you are successfully proving that it is harder to type in the right file and path.
In your statement
Code:
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel12Xml, "tbl_test", strTable, True
you are trying to import the contents of strTable. which you have prompted the user to enter the name of a new table.
Insert a few debug.prints in your code to see just what you are doing, eg
Code:
debug.print strTable, strFile
 

lookforsmt

Registered User.
Local time
Today, 04:42
Joined
Dec 26, 2011
Messages
672
Dear Cronk, where do i place the code in the module to debug.

in the IW should i type ?strTable or ? strFile
 

Users who are viewing this thread

Top Bottom