How to change query criteria by a form text field....??

  • Thread starter malik via AccessMonster.com
  • Start date
T

Tom van Stiphout

On Sat, 24 Jan 2009 20:57:04 GMT, "malik via AccessMonster.com"

If I understand you correctly you want to limit the rows returned from
a query by the value in some text field.
Create a query:
select * from myTable
where myField = Forms!myForm!myTextbox
(of course you exchange myObjectNames with yours)

-Tom.
Microsoft Access MVP
 
Top