A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » General Discussion
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Print a list of reports



 
 
Thread Tools Display Modes
  #1  
Old July 10th, 2009, 03:20 PM posted to microsoft.public.access
John Spencer
external usenet poster
 
Posts: 7,815
Default Print a list of reports

What version of Access are you using.

You can try using a query against the access system tables to get the report
names. You can then use this as the record source for your report. The SQL
statement below will list all the report names.

SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Type)=-32764))
ORDER BY MSysObjects.Name;

John Spencer
Access MVP 2002-2005, 2007-2009
The Hilltop Institute
University of Maryland Baltimore County

jean wrote:
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

  #2  
Old July 24th, 2009, 03:00 PM posted to microsoft.public.access
jean
external usenet poster
 
Posts: 19
Default Print a list of reports

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
  #3  
Old July 24th, 2009, 03:18 PM posted to microsoft.public.access
Allen Browne
external usenet poster
 
Posts: 11,706
Default Print a list of reports

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

--
Allen Browne - Microsoft MVP. Perth, Western Australia
Tips for Access users - http://allenbrowne.com/tips.html
Reply to group, rather than allenbrowne at mvps dot org.

"jean" wrote in message
...
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

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:30 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.