I've done some searching here, can't find too much info because the I can't search for just "not like". I'm trying to make a query that excludes all part numbers that end in -P2. I trimmed my table field because there where blank spaces behind the part numbers. I called the field this
Here is the criteria I am using.
That returns everything in the table. That should return 47 records.
I tried the code
and it returned 0 records. That should return 8 records.
What am I doing wrong??
Code:
BillNumber: Trim(BMI_ProductionHistoryFile!BillNumber)
Here is the criteria I am using.
Code:
Not Like '%-P2'
That returns everything in the table. That should return 47 records.
I tried the code
Code:
Like '%-P2'
and it returned 0 records. That should return 8 records.
What am I doing wrong??