Preface: I'm using an Access application that is already written and working, and not under my control. I've tried to find an answer for my problem by Googling, and I can only find answers about creating forms and programming VBA, but these do me no good, as I'm strictly a user. This should be a simple task, and I'm probably making a simple mistake. Also, the application and the data is works with are proprietary, so I will not be able to post all the information that I'm sure we'd all like. I'll be as complete and clear as I can. OK, here we go.
Here's a screenshot of the form, with the key fields highlighted.
4566 records, so I need to filter. I'm looking for records with values that begin with YGBR in the RAMS Item Code field. So, I go to Filter By Form and enter Like "YGBR", and I get to records back. I've also tried Like "YGBR*" with the same result.
Now, what I actually need is records with both YGBR at the start of RAMS Item Code and also not blank in Inv. Item No (bottom left). I can use Is Not Null there and get the results I expect, so I know that filtering this way should work. Based on what little I could find from Googling, it sems that what I'm doing with Like should be working. So what's going on? What am I doing wrong?