Problem Displaying Records

swbrodie

Registered User.
Local time
Today, 12:13
Joined
Apr 9, 2003
Messages
18
Hello.

Does anyone know if there is a way to display records backwards in a form in datasheet view? I don't mean to sort them in descending order. I mean to actually display them backwards, with the new record on the top?

If not, is there a way to automatically jump to the very bottom of the page? I have a macro that places the cursor in a new record upon open, but if the page is full of records, you still have to scroll down to the bottom of the page to see it.

Thanks.

Steve
 
Steve,

To go to the last record, try this



Private Sub Form_Load()

DoCmd.GoToRecord acDataForm, "YOUR_FORM_NAME", acLast

End Sub
 

Users who are viewing this thread

Back
Top Bottom