I have a syntax error in my SQL. Can someone help me with this?
I think I need to use single quotes because its a TEXT datatype but I dont know how to change it?
Private Sub cboMake_AfterUpdate()
Me.cboModel.RowSource = "SELECT fldModel FROM tblCar WHERE fldMake = " & Me.cboMake.Column(1) & " "
End Sub
I think I need to use single quotes because its a TEXT datatype but I dont know how to change it?
Private Sub cboMake_AfterUpdate()
Me.cboModel.RowSource = "SELECT fldModel FROM tblCar WHERE fldMake = " & Me.cboMake.Column(1) & " "
End Sub