I am trying to filter a table (cmTable) based on a number field using a select statement. The number field has duplicates by design.
How can I filter using a where clause on a column that has duplicates?
Is there a work around that I need to do?
strSQL = "SELECT * From cmTable " & _
"WHERE (((cmTable.QuoteID)= '727'));"
How can I filter using a where clause on a column that has duplicates?
Is there a work around that I need to do?
strSQL = "SELECT * From cmTable " & _
"WHERE (((cmTable.QuoteID)= '727'));"