First of all be aware that there is a limit as to the number of items you can put on a form. or report.
Also Queries have a character limit.
Not to mention the amount of memory (RAM) that it will take to load it.
You need to look at a term called Database "Normalization".
Which is database design where like items are kept in together in separate tables.
Case in point
Table name Data it contains
------------------------------------------------------------
Customers CustID, Name, Address, etc
Invoices InvoiceNum, Date, Total Price, etc
Invoice Details InvoiceNum, PartNum, Qty, etc
Inventory PartNum, Description, VendorID, etc
Vendors VendorID, Name, Address, Payment Terms,
5 tables needed to make a Invoice program
So instead of having one table contain all of the above data. 5 tables contain just what they need. It takes up FAR less disk space and far less RAM and is much easier to manage and very fast to search.
OK
DougP, MCP
dposton@universal1.com
Ask me how Bar-codes can help you be more productive.
Or visit my WEB site