products.Source = "SELECT ID, Price, ProductFamily, CustomText08, ManufacturerPartNumber, Description, Sort, CustomMemo02 FROM Products WHERE (products.CustomText08 <>'Yes') AND ProductFamily = " + Replace(products__MMColParam, "'", "''") + " ORDER BY Sort ASC"
with the above recordset query, I am trying to eliminate any of the products.CustomText08 fields that are equal to "Yes". When I do so, no records at all are returned even though there are many that do not equal "Yes".
However, when I try the reverse by stating "WHERE (products.CustomText08 <>'Yes')", I do get the proper results of only showing records that are equal to "Yes"
What am I doing wrong in my query?
with the above recordset query, I am trying to eliminate any of the products.CustomText08 fields that are equal to "Yes". When I do so, no records at all are returned even though there are many that do not equal "Yes".
However, when I try the reverse by stating "WHERE (products.CustomText08 <>'Yes')", I do get the proper results of only showing records that are equal to "Yes"
What am I doing wrong in my query?