I want to write a report of all accounts and their 10 most recent transactions. Firstly, I wrote a paramterised query that selects the TOP 10 transactions, ORDER BY TransDate DESC, with the AccountNumber as a parameter. Now I want to create a query to list each account, from the MasterTable, linking to the query thet gets the 10 transactions for each. But I cannot link the Master.AccountNumber to the [AccountNumber?] parameter. Is there a better way to do this ?
Start Free Trial