Here is an example of what I am trying to do:
I have a table in an Access database that has information about investments. The table lists the returns for different mutual funds in different portfolios at different times. The fields are FundID, PortfolioID, ReportMonth, ReportYear, ReturnPCT, and MoneyBalance.
A user creates a record by entering the ReturnPCT for a given month and year for a given fund and portfolio. A user is able to create multiple records for multiple funds at one time through the use of a repeating table. This is done through a seperate form which I have working properly.
My problem is that because of reporting timing, a user must enter the MoneyBalance for a fund a few weeks after the record has been created for a particular fund in a particular month and year. (i.e., when the user creates fund records via the other form, the MoneyBalance field is blank for a few weeks). Thus, a user must be able to query the database on FundID, PortfolioID, ReportMonth, and ReportYear to get the appropriate MoneyBalance field and then enter the correct figure. I want the user to be able to do this for multiple funds at once, just as they created multiple records at once. I want them to be able to make several queries at once, in essence a table of queries:
PortfolioID(Q1) FundID(Q1) RptMonth(Q1) RptYear(Q1) MoneyBalance
PortfolioID(Q2) FundID(Q2) RptMonth(Q2) RptYear(Q2) MoneyBalance
PortfolioID(Q3) FundID(Q3) RptMonth(Q3) RptYear(Q3) MoneyBalance
etc
Any help would be much appreciated!!!