Sorting on a Subform

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a form which contains a subform...pretty basic...except when I enter
information in my subform and then preview the information it sorts the
multiple fields of information. Is there a way I can prevent sorting to this
subform so that however I enter the information that it will appear on my
form/report as I entered it.

Any help would be appreciated.

Thanks Bunches!!!!
 
I have a form which contains a subform...pretty basic...except when I enter
information in my subform and then preview the information it sorts the
multiple fields of information. Is there a way I can prevent sorting to this
subform so that however I enter the information that it will appear on my
form/report as I entered it.

Any help would be appreciated.

Thanks Bunches!!!!

The data is not stored in the subform. It's stored in a Table - and tables
have no meaningful order. Think of a table as a sack full of data.

If you want information presented in a particular order you must - no option!
- use a Query sorting the data, or (for a Report) use the Report's Sorting and
Grouping option to sort the records by the value of some field in the table.

If you want to maintain the order of records as entered, you can use a
sequential Autonumber or a Date/Time field defaulting to =Now() to timestamp
each entry. Base the form on a Query sorted by this field, and use this field
in your Report's sorting and grouping dialog.

John W. Vinson [MVP]
 

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

Back
Top