473,699 Members | 2,323 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Making same report appear twice on one page

I've made an access report which shows the number of people in 5
activities. As you can imagine, it only takes up about a quater of the
page. I have to give a copy of this report to two people, and so in the
interests of saving the Amazon rainforest, would like to replicate the
report twice on the one page. And if possible, it would be good to be
able to have a each persons name (who is getting the report) at the
start of each one. I was thinking of just having 2 'detail' sections,
but not real sure if that is possible....

Nov 13 '05 #1
3 4076
Regnab wrote:
I've made an access report which shows the number of people in 5
activities. As you can imagine, it only takes up about a quater of the
page. I have to give a copy of this report to two people, and so in the
interests of saving the Amazon rainforest, would like to replicate the
report twice on the one page. And if possible, it would be good to be
able to have a each persons name (who is getting the report) at the
start of each one. I was thinking of just having 2 'detail' sections,
but not real sure if that is possible....


Options are to use columns or a main report in landscape with two
subreports side by side.
Nov 13 '05 #2
Here's how to create a copy of the report for each person who needs it, with
the name on it, no matter how many people that may be.

1. Create another table, with a record for each person who might get the
report:
PersonID AutoNumber
Surname Text
FirstName Text
IsPicked yes/No

2. Create a query that contains this table and your original one. In the
upper pane of the query design window, there should be no line joining the 2
tables. (Delete the line if you see one.) Drag the fields into the output
grid. In the Criteria row under IsPicked,enter:
True
Save. Close.

3. Open your report in design view. Add the names where you want them
displayed. For the combined name, you could use a text box with
ControlSource of:
=Trim([Firstname] & " " & [Surname])
Save. Close.

4. Enter the people into the new table, and check the IsPicked box for the
people who should get the report, whether 1 person, 2, or more. The report
will not print out a copy for each person whose box is checked in this
table.

To control the order of sorting, use the Sorting And Grouping box (View
menu) in report design view.

--
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.

"Regnab" <p.*******@gmai l.com> wrote in message
news:11******** **************@ o13g2000cwo.goo glegroups.com.. .
I've made an access report which shows the number of people in 5
activities. As you can imagine, it only takes up about a quater of the
page. I have to give a copy of this report to two people, and so in the
interests of saving the Amazon rainforest, would like to replicate the
report twice on the one page. And if possible, it would be good to be
able to have a each persons name (who is getting the report) at the
start of each one. I was thinking of just having 2 'detail' sections,
but not real sure if that is possible....

Nov 13 '05 #3
Righto - thanks heaps!! Will try that out...

Nov 13 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

9
3072
by: Colin McGuire | last post by:
Hi, I have an report in Microsoft Access and it displays everything in the table. One column called "DECISION" in the table has either 1,2, or 3 in it. On my report it displays 1, 2, or 3. I want to appear in the report is Yes, No, or Maybe. What do I need to do to change what appears in the report/what term do I need to search out in Google? Thank you Colin
4
1485
by: Ron | last post by:
Hi All I've got 2 files, transactions and comments, linked by a clientID as a FK in the clients file and as a FK in the comments file (PK in the 'client' file of course). The comments don't necessarily have to have anything to do with the transactions, but usually they do (explanations about when payment will be sent, who in the office has talked to the client about the bill and what was said, etc). The comments, rather than being a...
6
3315
by: Mike Conklin | last post by:
This one really has me going. Probably something silly. I'm using dcount for a report to determine the number of different types of tests proctored in a semester. My report is based on a parameter query which is the recordsource for the report. The parameter is <=. The query returns the correct amounts upto the date entered (no need for "between" dates here). There are 8 textboxes with dcounts; 2 other boxes Sum some of these
0
1287
by: Aaron Hartley | last post by:
Hi, I created a report in Access. * The report has 4 labels per page. Label here means the report is printed multiple times per page, not the label object type. * Each label uses 75 numbers, records from a table that are used to populate the caption property of 75 fields (label the object type). The first label uses the first 75 records, the second label uses the next 75 records and so on.
1
2768
by: cityrock | last post by:
Hi everyone, I have been searching 3 days stright for an answer, with no luck, so I decided to ask it out loud myself. Here is my problem. I am using a report as a catalog for my company. The main report holds our products with details (each detail is a product based on our products table). Some of the products show up twice on the main report (as they have diffrent specifications per line). I thought that instead of putting the...
1
1941
by: Kapil Shah via DotNetMonster.com | last post by:
Hello everybody, I am trying to create a web application to generate Crystal Report with Parameters. However I noticed that ReportDocument.Load is used twice when the parameter page is loaded . 1) The first time ReportDocument.Load is used when the Crystal Report is loaded and the parameter page is created. 2) The second time the ReportDocument.Load is again used when the user enters the parameters in the parameters page. My problem is I...
2
6925
by: Mustufa Baig | last post by:
Hi everybody, I have an ASP.NET website where clients can view their monthly billings by selecting different options. One of the option is the way they want to see the report i.e. whether they want to see it in PDF or EXCEL etc etc..... What I am trying to acheive is depending on their choice of format, I want to send the stream of that particulae selected format to the browser. I have tried couple od solutions but I couldn't able to get...
3
1404
by: gozzer101 | last post by:
Hello! I have a slight problem with a report. I have a report which is made from a query (User enters in PersonId) Then it comes up with a payslip. I want a msgbox to appear if the user opens the same persons report twice. Say person id = 1, payslip comes up. Then I want the user to know that they have already viewed(payed) this report. Is this possible? If so any help is much appreciated! Thank you in advance :)
4
2733
by: D.Stone | last post by:
I am having problems formatting an Access 2003 report which is trivial in the extreme (tabular layout, 9 fields from 1 table per row in the detail section, no groups/totals). One field (only) in the row can be longer than its text-box on rare occasions, so I've made the text-box and detail section CanGrow properties = Yes. This has had one positive effect - the occasional long field now displays correctly, split over 2 rows - but also a...
0
8691
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9180
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8920
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8887
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7755
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3060
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2351
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2012
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.