I have a scheduling database that has the following fields and sample data in a table.
SCHEDULEAIRCREWID SCHEDULEID AIRCREWID 1 1 1 2 1 2 3 2 7 4 2 10 5 2 15 6 3 3 7 3 6 8 3 15 9 4 2 10 4 7
What I am trying to do, is for every SCHEDULEID, I'd like the AIRCREWID to display in columns either in a query/report. So I'd basically like to see the following:
SCHEDULEID AIRCREWID AIRCREWID AIRCREWID 1 1 2 (NULL) 2 7 10 15 3 3 6 15 4 2 7 (NULL)
Any help would be appreciated.