Data is duplicating in an Access report

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

Guest

I have created a report from a query (which runs fine), but the report is
trebbling
all the data. Can anyone give me some help as to what I'm doing wrong.

Thanks
Oeano
 
A report will generally show the exact same records as returned in your
query (record source). Find the count of the records in your report's record
source and then add a text box to your report's Report Header section with a
control source:

=Count(*)

Are they the same?
 
Back
Top