I'm new to Access. The information is across 5 fields by product for each
supplier. I have tried getting a min/max for the range into a column without
success.
I'm new to Access. The information is across 5 fields by
product for each supplier. I have tried getting a min/max for
the range into a column without success.
I'm new to Access. The information is across 5 fields by product for each
supplier. I have tried getting a min/max for the range into a column without
success.
Well... that's because your table design is incorrect. You're "committing
spreadsheet". What will you do if you ever need a SIXTH supplier?
A properly normalized table design would have three fields (possibly more but
three essential ones): ProductID ( a link to a table of products ); SupplierID
( a link to a table of suppliers ); and the price. The query is very simple
with this design - just a totals query with a Max.
To get the maximum value of five *fields in a record* requires some VBA code.
But you'll really be better off recasting your table into a properly
normalized structure!
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.