I think this is what you requested. The offending memo field is
ProjectData.WorkDescription.
I have a Project Summary Query that pulls together data from a ProjectData
Table, an Owner SubTable, a Client Table, and a Profile Table. All my other
querys rely on this query.
The Project Summary Query is as follows:
SELECT ProjectData.ProjectName, ProjectData.StatusYear,
ProjectData.ConstructionCost, ProjectData.Fee, ProjectData.JobRole,
ProjectData.Phases, ProjectData.ListTown, ProjectData.ListState,
ProjectData.ListResidential, ProjectData.ListFederal,
ProjectData.ListPrestige, ProjectData.ListHistoric, ProjectData.JobNumber,
ProjectData.WorkDescription, ProjectData.ProjectDescription,
ProjectData.JobCaptain, ProjectData.StatusCycle, ProjectData.PublicPrivate,
ProjectData.ProfileCodeSubTable, Profile.Code, ProjectData.ProjectCity,
ProjectData.ProjectState, ProjectData.ClientFirm, ProjectData.OwnerSubTable,
Owner.OwnerName, Client.ClientReference, Client.ReferencePhone,
Client.Profession
FROM Profile RIGHT JOIN ((Owner RIGHT JOIN ProjectData ON
Owner.OwnerName=ProjectData.OwnerSubTable) INNER JOIN Client ON
ProjectData.ClientFirm=Client.ClientFirm) ON
Profile.Profile=ProjectData.ProfileCodeSubTable;
Arthur
======================================================