bluedollar
Programmer
I have a report that is supposed to list the top ten quotes for a particular contract (which it does), however it prints exactly the same info over ten pages (not the one which was intended).
The list of quotes is a subform on the report, which is based on a query, which has the following sql:
SELECT TOP 10 quote.quote_num, quote.details, quote.contract_num
FROM quote
WHERE (((quote.contract_num)=[Forms]![main_contract]![Text125]))
ORDER BY quote.quote_num DESC;
Does anyone know what I am doing wrong?
Any help would be greatly appreciated.
Thanks
Dan
The list of quotes is a subform on the report, which is based on a query, which has the following sql:
SELECT TOP 10 quote.quote_num, quote.details, quote.contract_num
FROM quote
WHERE (((quote.contract_num)=[Forms]![main_contract]![Text125]))
ORDER BY quote.quote_num DESC;
Does anyone know what I am doing wrong?
Any help would be greatly appreciated.
Thanks
Dan