Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Removing DUPLICATE data from a SubREPORT

Status
Not open for further replies.

RiderJon

Programmer
Aug 26, 2002
190
FR
I have a subreport that has DUPLICATE data on it. Is there a way to remove those without doing " the make-query and appending sequence"?

Any help or suggestion will be greatly apprecaited.
 
Set the Recordsource of the subreport to a select query with "group by" on all fields show on the subreport
 
I donot see the "Group By" Option. All I see is "ascending and decending" in SOrt field. Am new to ACCESS, so pls. letme know if I am missing something. Thank you.
 
you have to go in th menu view and click on totals
now you will see another row appear with group by in it
and thats it "What a wonderfull world" - Louis armstrong
 
If it helps, here's part of my RecordSource:

SELECT DISTINCTROW tblProj.Solicitor, tblInv.PersonID, tblInv.CompanyID, tblInv.LastName, tblInv.FirstName, tblInv.MiddleInitial, tblInv.Salutation,
 
Ahh .... Thank you Bill and Chrissie. The total row was hidden. So, I added it and "group by" ed it. It worked!

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top