Changing Record Sequence
I'm doing something similar for our production schedule database.
My approach is to use a temporary table with an autonumber field to generate a "SortID" for my schedule table. The SortID is a regular number field in the schedule table, which was copied from the temp table's autonumber field.
This puts all new entries at the bottom of the list in the schedule table.
Then to move an entry up or down, the production supervisor selects the item they want to move and then clicks an up or down arrow to move the item.
Clicking the arrow swaps the SortID of the selected record with the SortID of the record above (or below) depending on which way they want it to move.
Hope this helps.
8^D
|