Hello!
For the life of me I can’t figure out how to get this particular issue resolved. I’m wishing to check a column “ProjStat”, and if contains “NO BID”, for that record or records to be excluded. These are pulling from an Access 2K3 database, and going through ASP.NET (hince the single quotes). Here is the WHERE arguement in the SQL statement:
WHERE (((tblAllBids.BidDate)>=Date()) AND ((tblAllBids.ProjStat) NOT LIKE (‘NO BID’)))
With everything from AND…. omitted, this returns 10 records. 2 of these records contain “NO BID” in the ProjStat field. With the AND ((tblAllBids.ProjStat…. included, it returns 0 records!!!
I’ve also tried …AND ((tblAllBids.ProjStat) NOT IN (‘NO BID’)))
This produces the same results – 0 records.
Any ideas? I’m really stumped on this one.
Thanks much!!!