So the following query statement works just fine. But I need to add an additional field to check, is that possible?
So if FIELD1 or FIELD2 is equal to whatever value is in the Combo254.text, then select those records.
Here is the current query I am running:
Temp = Combo254.Text
Dim strSQL As String
Dim strWhere As String
strWhere = (Chr(34) + Combo254.Text + (Chr(34)))
strSQL = "SELECT * FROM MainQuery WHERE [FIELD1] Like " & strWhere
'MsgBox (strSQL)
[Form_Main].RecordSource = strSQL