It's an idea but it won't work in this situation. They want the subform to be in Part Number order.
Main Topics
Browse All TopicsI have a form which prompts the user for an Order Number. After entering the order number a subfile displays the line item information for the order, sorted by part number, which shows the order quantity. On the subform the user enters a crate number and a packed quantity. If the packed quantity entered is less than the order quantity, the order quantity is changed to the packed quantity and another line for the part number is added to the subfile showing the remaining quantity as the order quantity. I requery the subfile to include the new record. My problem is that when I requery the subfile it repositions to the top. I want the subfile to display positioned on the record the user was working on. How do I do this?
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
The two lines below show how you can use the subform's recordset to go to the last record or to locate a specific record based on a criteria. No error handling: the first would fail if there are no records.
Note that it could be cleaner to use the subform's recordset directly to update a record or to add a new one. That way, there is no need for Requery and no flickering at all.
(°v°)
Business Accounts
Answer for Membership
by: nico5038Posted on 2008-05-07 at 14:48:23ID: 21520630
A simple solution could be to use the unique ID of the subform rows and sort that descending.
Thus the newly created record will always show on top.
Idea ?
Nic;o)