report from two queries?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a report that is pulling from query A. I want to add a text field at the bottom of the report to pull a value from Query B. Can this be done or am I going about it the wrong way

Thank
Lanee
 
You can use a text box bound to an expression like:
=DLookup("[yourfield]","[YourTable]","your where clause")
or you can use a subreport
or you can use code to place a value in an unbound text box

--
Duane Hookom
Microsoft Access MVP


Lanee said:
I have a report that is pulling from query A. I want to add a text field
at the bottom of the report to pull a value from Query B. Can this be done
or am I going about it the wrong way?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top