Not sure this can be done, but here goes... I have a form with two reports displayed simultaneously... I need the total of each to appear in a textbox... I tried the below:
([Reports]![rptBookDepositTotal]![AccessTotalsAmount])+([Reports]![rptPrevUnRecTotal]![AccessTotalsAmount])
Maybe I should merge the two driving queries (?):
SELECT PreviousUnRec.Store, PreviousUnRec.Amount
FROM PreviousUnRec
ORDER BY PreviousUnRec.Store, PreviousUnRec.Amount DESC;
SELECT Book.Store, Book.Amount, Book.Date
FROM Book
ORDER BY Book.Store, Book.Amount DESC;