A
AMH
I use a form to search a text field in a query
The SQL view of the query looks like this
SELECT qryMainRefList.YR, qryMainRefList.TI, qryMainRefList.SO,
qryMainRefList.AU, qryMainRefList.[IN], qryMainRefList.AB
FROM qryMainRefList
WHERE (((qryMainRefList.AU)=[Forms]![frmSearch]![txtAU]))
ORDER BY qryMainRefList.YR DESC;
The problem is that when it searchs for the input from
[Forms]![frmSearch]![txtAU] it looks for a whole field value
I need to look for any part of the field and can not do it.
Thanks in advance
AMH
The SQL view of the query looks like this
SELECT qryMainRefList.YR, qryMainRefList.TI, qryMainRefList.SO,
qryMainRefList.AU, qryMainRefList.[IN], qryMainRefList.AB
FROM qryMainRefList
WHERE (((qryMainRefList.AU)=[Forms]![frmSearch]![txtAU]))
ORDER BY qryMainRefList.YR DESC;
The problem is that when it searchs for the input from
[Forms]![frmSearch]![txtAU] it looks for a whole field value
I need to look for any part of the field and can not do it.
Thanks in advance
AMH