This is the sql statement, it's long. There are several tables with relationships, too: SELECT tbl_Applications.AppNo, tbl_Applications.cSchDistNum, tbl_Applications.Y1App, tbl_Applications.Y2App, tbl_Applications.TotalApp, tbl_Applications.Y1Funded, tbl_Applications.Y2Funded, tbl_Applications.TotalFunded, tbl_Applications.PupilCnt, tbl_Applications.Consortium, tbl_Applications.SchoolCnt, tbl_Applications.Funded, tbl_Applications.Notes, tbl_Applications.CFName, tbl_Applications.CLName, tbl_Applications.Phone, tbl_Applications.Fax, tbl_Applications.Problems, tbl_Applications.Email, tbl_Applications.SubApp, [TBL Combined SchDist].cName, [TBL Combined SchDist].cAddress, [TBL Combined SchDist].cCity, [TBL Combined SchDist].cSt, [TBL Combined SchDist].cZip, [TBL Combined SchDist].cPhone, [TBL Combined SchDist].cFax, [TBL Combined SchDist].cRegionCode, [TBL Combined SchDist].cGrades, [TBL Combined SchDist].cDistNum, [TBL 2 District Master].rd2DistName, [TBL 3 Region Master].r3Name, tbl_Applications.Score
FROM [TBL 3 Region Master] INNER JOIN ([TBL 2 District Master] INNER JOIN (tbl_Applications INNER JOIN [TBL Combined SchDist] ON tbl_Applications.cSchDistNum = [TBL Combined SchDist].cSchDistNum) ON [TBL 2 District Master].rd2DistNo = [TBL Combined SchDist].cDistNum) ON [TBL 3 Region Master].r3Number = [TBL 2 District Master].r3Number
ORDER BY tbl_Applications.AppNo;