I am importing a spreadsheet with the following code:
Sub ImportExcel()
Dim strXls As String
strXls = "UNC Address Removed For Post"
DoCmd.TransferSpreadsheet acImport, , "tblStockImport", _
strXls, True, "Delivery Volumes!"
End Sub
This works fine, however, the issue is that my...