Pozition of records

  • Thread starter Thread starter Florin
  • Start date Start date
F

Florin

Hi,

how can I print report with pozition of records identical with pozition on
the main table.
The record source of my reports is a query with a lot of table.

Thanks
 
You should never make any assumptions about the order of records in a table
(or query): tables are "sacks of data", where the records can be wherever
Access feels like putting them.

If the order of the records is important, you need to ensure that the table
includes sufficient information to allow you to do an ORDER BY to get the
records in the desired order. Once you've got that, you need to ensure that
the same fields are included in the report's Sorting and Grouping dialog,
since reports do not respect the order of records in the underlying
recordsource.
 
The order of records in a table is not important. Records will not reliably
stay in the same order in your table.

If the order is important, you need to add a new field to your table and
enter something that can be used for sorting.
 
I very clear

Thanks
Florin

RBear3 said:
The order of records in a table is not important. Records will not reliably
stay in the same order in your table.

If the order is important, you need to add a new field to your table and
enter something that can be used for sorting.

--
Hope that helps!

RBear3
.
 

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

delete record 3
Work with bits 7
Guidance required for report design 4
Query design 0
Form/ filter for report 2
New Record 4
report using a subreport based on a crosstab query 5
report error message 1

Back
Top