I have a simple Access macro that opens two forms and filters them based on input from the user.
I used parameter queries to accomplish this, so my Where condition for both reports reads:
[PONumber]=[Enter PO Number]
As it currently stands, an input box pops up twice - once for each report. I was hoping that I could somehow re-use the value from the first input box.
How do I accomplish this?