GO Figure
the old
SELECT tblPRMNew.*, tblMainHeader.EnteredbyMGI FROM tblMainHeader LEFT JOIN tblPRMNew ON tblMainHeader.MainHeaderID = tblPRMNew.MainHeaderID;
the new (that works)
SELECT [tblCNRCancellation].[CNRCancellationID], [tblCNRCancellation].[MainHeaderID]...