Can you tell me why this isn't working:join = "INSERT INTO tblCapRecBeforeChanges (CaseNumber," & _ "PartNumber,Status,LastName,FirstName,SSN,OtherSSN,OtherNotes,InGDB," & _ "DocsOrdered, DocsHere, AppHere, Ubum, Suspended, Trace, SentToHUD, SentToTSI, SentToCredit, " & _ "SpanishCase, MailAddress, MailCity, MailState, MailZipCode, CareOf, HomePhone, OtherPhone, " & _ "SpousePhone, PropAddress, PropCity, PropState, PropZipCode, Updated, MailKey, MailedFirst, MortgageAmt, " & _ "PaidUpFront, EndorseDate, Term, MatureDate, EncumDate, HoldingMor, ServingMor, RcvdFromOld, RcvdFromRegular, " & _ "RcvdFromRtn,RcvdFrom2s,RefundAmt) SELECT t1.CaseNumber,1,1,t1.Lastname,t1.FirstName," & _ "t2.akas_ssn_1, t2.akas_ssn_2, t2.subj_first_1 + t2.subj_middle_1 + t2.subj_last_1 + t2.subj_suffix_1, " & _ "0,0,0,0,0,0,0,0,0,0,0,t2.subj_address_1,t2.subj_city_1,t2.subj_state_1,t2.subj_zipcode_1," & _ "t1.CareOf, t2.subj_phone10_1, subj_phone10_2, t2.subj_phone10_3, t1.PropAddress, t1.PropCity, " & _ "t1.PropState, t1.PropZipCode, GETDATE(), 1, GETDATE(), t1.MortAmount, t1.PaidUpFront, " & _ "t1.EndorseMonth+'/'+t1.EndorseDay+'/'+t1.EndorseYear,t1.Term," & _ "t1.MaturityMonth+'/'+t1.MaturityDay+'/'+t1.MaturityYear,t1.EncumMonth+'/'+t1.EncumDay+'/'+t1.EncumYear," & _ "t1.HoldingMor,t1.ServingMor,0,0,0,0,t1.RefundAmount" & _ "FROM tblAbove1500 t1 OUTER LEFT JOIN tblAccurint_Above1500 t2 ON t1.CaseNumber = t2.acctno"
It says it doesn't like the 't1'Brenda