Ok...sooooo I thought I had it. The expression I have doesnt work entirely, it returns the same account over and over as well as leave other fields filled with their information. I dont know if it's how the expression is written or possibly something going on with my tables and their relationships.
I have a query that runs my Accounts table. In my Accounts table, I have expense accounts and I have an IsRecurring field with a Yes/No box. Also within my Accounts table, I have PaymentDate, DueDate, Amount, and Category in my query. I have another table Category that has a one-to-many with ref. integrity between the CategoryID and the Category field of Accounts.
What I want the query to do is return all the accounts and their respective PaymentDate, DueDate, and Amount when IsRecurring is checked.
Heres what I have:
Code:
RecurringAccount: DLookUp("[Account]","tblAccount","[IsRecurring] = True")