Order of Records in Header on a Main form

Z

zufie

Hi,

I cannot understand why the order of records displayed in the Form
Header on a Main form display in descending order (that is from most
recently entered to first entered record).


Is there a way via the Main form properties to change this so that
the
records display in ascending order (in the order entered, that is,
from first record entered to most recent record entered)?


These records are entered on a separate Subform (FrmGranteeEntry) and
display on FrmGranteeEntry in the order entered.


Any ideas?


Thanks!


John
 
R

Ron2006

Look at the query that is the basis for the form that is showing them.
Be sure that there is a field included in that query that will put the
records in the sequence that you want (there apparently is since you
are saying that the records are in the reverse order to what you
want.) Now change the sequence for that field in the query to make
the records appear in the order than you want.

Ron
 
K

KARL DEWEY

records display in ascending order (in the order entered, that is, from
first record entered to most recent record entered)?
Records do not maintain an order of entry. They are stored in a table like
a 'barrel of bricks.' You must order them by sorting on a field.
 
Z

zufie

Look at the query that is the basis for the form that is showing them.
Be sure that there is a field included in that query that will put the
records in the sequence that you want (there apparently is since you
are saying that the records are in the reverse order to what you
want.)  Now change the sequence for that field in the query to make
the records appear in the order than you want.

Ron

Thanks Ron, though there is no query behind the form.

These records are entered on a separate Subform and then are stored in
the MainID table.

John
 
Z

zufie

first record entered to most recent record entered)?
Records do not maintain an order of entry.  They are stored in a table like
a 'barrel of bricks.'  You must order them by sorting on a field.









- Show quoted text -

Thanks Karl.

I did try sorting the field Award in Ascending (A to Z) order AND I
did try sorting the entire MainID table in Ascending (A to Z) order
but I get the same result?!

John
 
Z

zufie

Thanks Ron, though there is no query behind the form.

These records are entered on a separate Subform and then are stored in
the MainID table.

John

Ok, ok.

I sorted the field, Date Last Updated, in Ascending order.

John
 
Z

zufie

Thanks Karl.

I did try sorting the field Award in Ascending (A to Z) order AND I
did try sorting the entire MainID table in Ascending (A to Z) order
but I get the same result?!

John- Hide quoted text -

- Show quoted text -

Ok, ok.

I sorted the field, Date Last Updated, in Ascending order.

John
 
Z

zufie

Look at the query that is the basis for the form that is showing them.
Be sure that there is a field included in that query that will put the
records in the sequence that you want (there apparently is since you
are saying that the records are in the reverse order to what you
want.)  Now change the sequence for that field in the query to make
the records appear in the order than you want.

Ron

Ron,

You are a genius!

You were right!!!!!!!!!

I dug some more and found a query that runs off the MainID field and
selected Ascending Sort for the ID field.

Problem solved!

Thanks,

J
 

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

Top