I am trying to implement a GUI
through an Access 2007
Form
for users to enter data through.
I am using a continuous
style form in Access
because the users are entering data line-by-line as they appear on a shipping invoice.
Through repeated discussions with multiple end-users and managers, it has become apparent that users will need the ability to insert
a new record into these itemized lists if they realize that they have mistakenly skipped a line.
This means that I need to have some mechanism to manipulate the record order on-the-fly in a continuous form in Access
. So far, I have been unable to find answers on how to do this.
Does anyone have any suggestions?
Important Details:
The lists are composed of
child
records and are each assigned adetail_id
.The
parent
record contains amaster_id
which is associated to thechild
records.The current
order by
isdetail_id ASC
.
It would be best to not have users type the row_order they wish the final information to be entered in. I would like Access
to either key off a separate sequence field or use an additional field in the order by
to accomplish this.