i have a report which shows list of top customers, and each time of printing it prints all customers list. instead of this i canted to have only first 10 top customers have to be displayed on the list.
Go into the report design and look at the report design's RecordSource property. This will be either an SQL statement starting something like SELECT this, that, theother FROM blah
Change this to SELECT TOP 10 this, that, theother FROM blah
If it is the name of a stored query, open the query in design mode, change to SQL view and edit the code as above.
BUT ALONG WITH THE CUSTOMER NAME I HAVE THE TOTAL REVENUE, I WANTED TO HAVE TOP 10 REVENUE CUSTOMERS. WHEN I TRIED ABOVE IT PICKS ONLY TOP 10 CUSTOMER AND NOT REVENUE WISE
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.