i want to search name that have keyword from another form.
for example if i key in "nad", it will display all name that have "nad" in their name.
i try this but it will display name with exactly "nad".
SELECT *
FROM supplier
WHERE (((supplier.company_nm) Like Forms![search]!company_nm));
can anyone help me?
for example if i key in "nad", it will display all name that have "nad" in their name.
i try this but it will display name with exactly "nad".
SELECT *
FROM supplier
WHERE (((supplier.company_nm) Like Forms![search]!company_nm));
can anyone help me?
