F
FRED
I would like to print a report that will return the best
three freight rates for each destination I have to work
with. Each destination could have up to 20 quotations. I
want the report to return the three best per
destination.
BEST 2nd BEST 3rd BEST
Ex. Florida, ABC INC DEF INC XYZ INC
Denver DEF INC PNO INC XYZ INC
...
Here are table structure
Freight destination are in one table
Freight rate are in an other table with a link to
destination table.
Destination table Field
ID as primary key
City as text
state as text
Miles as integer
Rate table field
Carrier as text
Rates as integer
Destination ID as link to destination table
three freight rates for each destination I have to work
with. Each destination could have up to 20 quotations. I
want the report to return the three best per
destination.
BEST 2nd BEST 3rd BEST
Ex. Florida, ABC INC DEF INC XYZ INC
Denver DEF INC PNO INC XYZ INC
...
Here are table structure
Freight destination are in one table
Freight rate are in an other table with a link to
destination table.
Destination table Field
ID as primary key
City as text
state as text
Miles as integer
Rate table field
Carrier as text
Rates as integer
Destination ID as link to destination table