URGENT

A

Alicia

My database is due to be finished tomorrow...
However, one small problem, I want my records to show in backwards order, so the most recent one is shown on the form first.
My primary key is Call No and when the program is opened I want it to show Call No 500 say, and scrolling through the records will show 499, 498..... 1.
PLEASE HELP! It used to do this but I have managed to do something to change it!
 
C

Cheryl Fischer

Make the Record Source of your form a query and sort it in descending order
by Call No; for example,

Select * from MyTable ORDER BY [Call No] DESC

hth,

--
Cheryl Fischer
Law/Sys Associates
Houston, TX

Alicia said:
My database is due to be finished tomorrow...
However, one small problem, I want my records to show in backwards order,
so the most recent one is shown on the form first.
My primary key is Call No and when the program is opened I want it to show
Call No 500 say, and scrolling through the records will show 499, 498.....
1.
PLEASE HELP! It used to do this but I have managed to do something to
change it!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top