Hi all, newbie to this forum here. I've got a predicament that I am working on. We have an access database (.mdb) and I am trying to use a Macro we created that imports a few lines of Import Delimited text from a .csv file. Everything works just fine on a Windows XP computer, but when running the Macro on a Windows 7 PC, I get a message stating "Invalid Argument" and the records do not get imported. We tried the Compact and Repair tool with no resolution. Here is my Macro:Anyone have any ideas? Much appreciated! Thanks!Code:SetWarnings - No; OpenTable - AddressInfo, Datasheet, Edit ; TransferText - Import Delimited, Current Import Specification, AddressInfo, C:\UPSInv\Current\Current.csv, No, , 50001 ; RunSQL - UPDATE AddressInfo SET Addressinfo.PackageType = "Standard Flats" ; SetWarnings - Yes ; CloseDatabase