I have a table MembershipList, containg the field PostCode and a form with field Code (contain AA or A).
This code works:
WHERE (((MembershipList.PostCode) Like ([Forms]![frm_membcode]![Code] & "*"))
but returns all possible A# and AA codes.
I have found suggested code using: LEFT(my_field, 2)...