I am trying to see if a Keyword is in a record set, but getting an error 3070 not a valid field name.
I am trying to see if :
[/code]
ID1 is a primary key value, Keyword is a field in a table called Keyword. The combo provides the name of the Keyword to be found.
I am trying to see if :
Code:
Set rs2 = db.OpenRecordset("Keyword", dbOpenDynaset)
rs2.FindFirst "ID1 = " & Me.ID1 & " AND Keyword = " & Me.Combo3.Text[code]
ID1 is a primary key value, Keyword is a field in a table called Keyword. The combo provides the name of the Keyword to be found.