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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Query preview recordsorurce report

Status
Not open for further replies.

matrixindicator

IS-IT--Management
Joined
Sep 6, 2007
Messages
418
Location
BE
You can open a query, change some criteria and preview the result without saving the query. A user wants that the result of the query are visible in the report without saving the query ? I think it is required to save the changes in the query before they are visible in the report ?
 
instead of useing a query as the record source of the report use a select statement
 
Select statement is in this case to large and if you write Select * he shows the query in his total.
 
add a where condishion to the query in the recordsource

Code:
Select * 
from Queryname
where filed0=xxxx
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top