Print a list of reports

  • Thread starter Thread starter jean
  • Start date Start date
J

jean

Hi

I have in my database over 90 reports and I would like to print a list
of them

I have check with the documenter but it seams to print one page for
each report

I have play with options without result

Is it possible to have a list of report that can fit let say on 2
pages instead of 90

thanks
 
This query should give you a list of reports:
SELECT [Name] FROM MsysObjects
WHERE (([Type] = -32764) AND ([Name] Not Like "~*")
AND ([Name] Not Like "MSys*"))
ORDER BY [Name];
 
Back
Top