Hello.
I have a pretty basic TransferSpreadsheet module that works well except that if the Zip code has the four digit extention, it's not importing.
Option Compare Database
Dim myCheck
Function MeridianLinkFileImport()
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "tbl_MeridianLinkFileImport", "R:\DEPT-BR\CONSUMER LENDING\Marketing Campaigns\2014 Auto Loan Prescreen\Report from LoansPQ.xls", True, "Sheet1!A3:AO50000"
End Function
If there is no extention, it is importing fine... 85086 works fine but 85018-4710 doesn't import.
The field is a Short Text data type.
Any ideas around this? Thanks.
I have a pretty basic TransferSpreadsheet module that works well except that if the Zip code has the four digit extention, it's not importing.
Option Compare Database
Dim myCheck
Function MeridianLinkFileImport()
DoCmd.TransferSpreadsheet acImport, acSpreadsheetTypeExcel9, "tbl_MeridianLinkFileImport", "R:\DEPT-BR\CONSUMER LENDING\Marketing Campaigns\2014 Auto Loan Prescreen\Report from LoansPQ.xls", True, "Sheet1!A3:AO50000"
End Function
If there is no extention, it is importing fine... 85086 works fine but 85018-4710 doesn't import.
The field is a Short Text data type.
Any ideas around this? Thanks.