C
Chuck
About Tom's sorting question.
Is it possible that Tom is tackling this problem the wrong way?
How is Tom going to use a report with 24000+ part numbers?
Trying to find a specific part number in a 2500+ page printed report is not
very productive. Trying to find a specific part number in an electronic report
is no better unless you set up a search function. If you have a search
function, you don't need to sort the part numbers at all.
My suggestion would be to make a form where you could enter the part number in
a text box. Add a command button to open a report. Make the data source for
the report a query. Get the criteria for the part number from the text box in
the form.
Example: enter PGD502QS in the text box. In the query, set the criteria for
the for the part number [Forms]![<your form name>]![<your text box name>]
When you click the command button to open the report, the report will look at
the query for is data. The query will look at the text box in the form for its
criteria. The report can be designed to show the data in all fields associated
with the single part number.
Chuck
--
Is it possible that Tom is tackling this problem the wrong way?
How is Tom going to use a report with 24000+ part numbers?
Trying to find a specific part number in a 2500+ page printed report is not
very productive. Trying to find a specific part number in an electronic report
is no better unless you set up a search function. If you have a search
function, you don't need to sort the part numbers at all.
My suggestion would be to make a form where you could enter the part number in
a text box. Add a command button to open a report. Make the data source for
the report a query. Get the criteria for the part number from the text box in
the form.
Example: enter PGD502QS in the text box. In the query, set the criteria for
the for the part number [Forms]![<your form name>]![<your text box name>]
When you click the command button to open the report, the report will look at
the query for is data. The query will look at the text box in the form for its
criteria. The report can be designed to show the data in all fields associated
with the single part number.
Chuck
--