Can anybody eyeball something that I can't see???
Debug.Print Result = "INSERT INTO All2 (LoanType, Street, Unit, City, State, Zip, Borrower, Vendor, DateRecd, Wholesaler, Processed, UploadID, Result, Latitude, Longitude, ZillowID, Zestimate, ZRestimate, Zerror) VALUE ('2nd NPN','1 Main Street','','Ijamsville','MD','21754','John Smith',123,#10/01/2017#,,1,568,1,'39.31063','-77.330752','36881773',477935.00,2478.00,'')"
Code:
MySql = "INSERT INTO All2 (LoanType, Street, Unit, City, State, Zip, Borrower, Vendor, DateRecd, Wholesaler, Processed, " & _
"UploadID, Result, Latitude, Longitude, ZillowID, Zestimate, ZRestimate, Zerror) VALUE " & _
"('" & LoanType & "','" & Street & "','" & Unit & "','" & City & "','" & State & "','" & Zip & _
"','" & Borrower & "'," & Vendor & ",#" & Format(DateRcvd, "mm/dd/yyyy") & "#," & Wholesaler & "," & Processed & _
"," & UploadID & "," & Result & ",'" & Latitude & "','" & Longitude & "','" & ZillowID & _
"'," & Zestimate & "," & ZRestimate & ",'" & ZError & "')"
Debug.Print MySql
CurrentDb.Execute MySql, dbFailOnError
Debug.Print Result = "INSERT INTO All2 (LoanType, Street, Unit, City, State, Zip, Borrower, Vendor, DateRecd, Wholesaler, Processed, UploadID, Result, Latitude, Longitude, ZillowID, Zestimate, ZRestimate, Zerror) VALUE ('2nd NPN','1 Main Street','','Ijamsville','MD','21754','John Smith',123,#10/01/2017#,,1,568,1,'39.31063','-77.330752','36881773',477935.00,2478.00,'')"