Link to home
Start Free TrialLog in
Avatar of rtod2
rtod2Flag for United States of America

asked on

Form and database optimization

I have the entry form shown in the attached screenshot that does not have a very nice layout.  Ideally, I would like the entry form to show all the records with the most recently added ones at the top. User generated image
Avatar of Rey Obrero (Capricorn1)
Rey Obrero (Capricorn1)
Flag of United States of America image

use a query based on the table that you are using as the record source of the form,
in the query use an order by clause, something like this

select * from TableName
Order by ID Desc
ASKER CERTIFIED SOLUTION
Avatar of Ariful Ambia
Ariful Ambia
Flag of Bangladesh image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of rtod2

ASKER

I was more talking about the form design to begin with.  What type of form should be selected.  I see that the answer to that question is continuous.
Avatar of rtod2

ASKER

rather not create a query