Changing the display order on form of records in tabular display

jpl458

Well-known member
Local time
Yesterday, 19:04
Joined
Mar 30, 2012
Messages
1,200
I have a form that is composed of text boxes that are in tabular form, and the form has data entry set to false. The form is based on a table (Master File). I am using the ACCESS supplied get first, get next...etc that are on the bottom of the form, like so
1674686573418.png
.

My problem is that I make development changes to the Master, but I can't seem to be able to change the order in which the records are displayed, one at a time, on the form. I have sorted the Master by date, oldest to newest, but it doesn't change the display order. Is there any way to change that, and would best practices be to add buttons to get first...etc?
 
The form has an Order By property, or can be based on a query with sorting applied.
 
The form has an Order By property, or can be based on a query with sorting applied.
The order by property works well indeed.

Thanks
 
They were conflicting with each other. Try to stick with using only one method or you'll make your head spin. Personally, I like using the query to order the recordset.
By using a query are you saying that you do a Make Table to get things in the proper order?
 
I OK with SQL, I didn't think about the record source. Doing it the way you describe leaves the file intact with less chance for error.

Thanks Pat
 

Users who are viewing this thread

Back
Top Bottom