Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need help with a query 1

Status
Not open for further replies.

mooneye

Technical User
Jan 14, 2002
27
IE
I am trying to create a query that will select the current record on display in a form. Filter although it will do this for me is not an option.
Thanks
Ed
 
Use the form as the criteria for the query...

select
FieldName1,
FieldName2
from
TableName
where
FieldName1=Forms!FormName!ControlName1 and
FiledName2=Forms!FormName!ControlName2
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top