I'm going to try and explain this as easy as I can.
I have a students database. The students table is linked to a funding table. A record will exist in the funding table for each semester a student is enrolled. So if a student is enrolled in the fall and spring for a given school year, then there will be two student records in the funding table. Further, a student may have multiple sources of funds for a given semester, so there may be two student records in each semester.
Basically what I want to be able to do is when I filter by school year (ex. School Year "2010-11") instead of returning two or more records for each student, it only returns one record with a column displaying fall funding and a column displaying spring funding.
The purpose of this is so I can eventually run a report that will group by funding source and then list all students who receive money from each source, as well as the amounts they received in the fall and spring on one line. Then I want to be able to total the amounts received for each source so I can keep track of how much money is used and how much is left.
Any help or pointers would be greatly appreciated.