repeating values in report details

  • Thread starter Thread starter Guest
  • Start date Start date
What do you want to do about it?
Do you want to hide it?

If the Row repeat itself, then you can use the RecordSource of the report to
remove dupliates by adding Distinct

Select Distinct TableName.* From TableName

If you want to hide a field that repeat itself, then one of the field
properties is "HideDuplicates Property" set it to Yes
 
Back
Top