I have a query used to drive a subform showing part numbers. It works fine, but I need the ability to enter a partial part number and have it return anything starting with that partial part number.
So I enter "ABCDE" and the query returns "ABCDE123", "ABCDE345", "ABCDE456", etc.
I imagine that I need to do a match on LEFT(PartNumber,LEN(MyEntry)), but I would like to do this without the criteria being a control on a form, as I can't get that to work. So can I do this using the query as the data source of the subform, then a Master / Child relationship from my main form to the subform?
Robert
So I enter "ABCDE" and the query returns "ABCDE123", "ABCDE345", "ABCDE456", etc.
I imagine that I need to do a match on LEFT(PartNumber,LEN(MyEntry)), but I would like to do this without the criteria being a control on a form, as I can't get that to work. So can I do this using the query as the data source of the subform, then a Master / Child relationship from my main form to the subform?
Robert