Hello!
I have a combobox with 3 columns, ownername, lotnumber and loanid, to be used to choose a loan record. In the after update event I haveIt works perfectly without the last criterion, [LoanID] = (Combo134.Column(2). I have tried various combinations of quotes, single quotes, no quotes. Etc. LoanID is a number. Name and lot number are text.Code:DoCmd.SearchForRecord , "", acFirst, "[fullName] = " & "'" & Combo134.Column(0) & "'" & _ " and [lot_number] = " & "'" & Combo134.Column(1) & "'" And [LoanID] = (Combo134.Column(2)
I'm getting Runtime Error 13 - Type Mismatch. What am I missing Please? TIA!