Print a list of reports

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
 
A

Allen Browne

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];
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top