This is my code:
Private Sub Import_Sbod_Click()
Dim path As String
path = InputBox("Enter the full path to your text file. Example: C:\TestFile.txt", "File Location")
DoCmd.TransferText acImportDelim, "test", "Sbod", path
MsgBox "Import Complete", vbOKOnly, "Confirmation"
End Sub
If...