K
Kevin Sprinkel
I have a report, consisting of a series of subreports,
that measures our company's estimates of commercial
construction projects vs. actual bid data.
A query selects our last estimate, which is compared to
the awarded bid, by the following SQL statement:
SELECT M.JobNumber, M.EstimateNumber, M.Amount
FROM tblEstimateData AS M
WHERE (((M.EstimateNumber)=(SELECT Max(EstimateNumber)
FROM tblEstimateData As T
WHERE T.JobNumber = M.JobNumber)));
I wish to create another subreport which includes all of
the other bids, i.e., all BUT the last. Can anyone tell
me how?
that measures our company's estimates of commercial
construction projects vs. actual bid data.
A query selects our last estimate, which is compared to
the awarded bid, by the following SQL statement:
SELECT M.JobNumber, M.EstimateNumber, M.Amount
FROM tblEstimateData AS M
WHERE (((M.EstimateNumber)=(SELECT Max(EstimateNumber)
FROM tblEstimateData As T
WHERE T.JobNumber = M.JobNumber)));
I wish to create another subreport which includes all of
the other bids, i.e., all BUT the last. Can anyone tell
me how?