The other two suggestions should work, but let's try a little lateral thinking.
You have queryB that contains a parameter criteria, something like
Where Transdate = [Please enter date]
This will return a bunch of records where transdate equals the date entered.
This date column can be used in QueryA, not in the criteria selection but in
the linking section. Something like
Select * from table1 inner join queryB on
table1.PK = queryB.PK
AND table1.Transdate = QueryB.Transdate
This should solve your problem.
wellington said:
Not Quite
The user opens the database
Goes to the query window
Selects Query B
Query B calls (uses as if it were a table say) Query A
Query A asks the user to enter a date value
I would then like to see (access) the date entered in Query A from Query B
(Sorry about the confusion)