473,508 Members | 2,367 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Report properties question?

I have a report that return all the records (materials ordered) by all
callers each day.

I want the report to just show all the records (materials ordered) by
each individual caller each day
on a separate page.

I tried Hide Duplicates property, Force New Page all to no success.

Here is the code to my qry/record source for my report:

SELECT Trim([Last Name]) & ", " & Trim([First Name]) & " " &
Trim([Middle Initial]) AS Expr2, [qry DaysReport1].*, Caller.[Last
Name], Caller.[First Name]
FROM [qry DaysReport1] INNER JOIN Caller ON [qry DaysReport1].[Caller
ID] = Caller.[Caller ID];

What must I change on Properties of my report?

Thanks,
John
Sep 26 '08 #1
4 1869
On Fri, 26 Sep 2008 10:03:59 -0700 (PDT), zufie wrote:
I have a report that return all the records (materials ordered) by all
callers each day.

I want the report to just show all the records (materials ordered) by
each individual caller each day
on a separate page.

I tried Hide Duplicates property, Force New Page all to no success.

Here is the code to my qry/record source for my report:

SELECT Trim([Last Name]) & ", " & Trim([First Name]) & " " &
Trim([Middle Initial]) AS Expr2, [qry DaysReport1].*, Caller.[Last
Name], Caller.[First Name]
FROM [qry DaysReport1] INNER JOIN Caller ON [qry DaysReport1].[Caller
ID] = Caller.[Caller ID];

What must I change on Properties of my report?

Thanks,
John
In Report Design View, click on View + Sorting and Grouping.
In the Field/Expression column, write
Expr2

In the lower panel set
Group Header = Yes.

Back in report design view, click on the group header. Set the Group
Header Force New Page property to BeforeSection. Place the Expr2
control in the Group Header.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Sep 26 '08 #2
On Sep 26, 12:39*pm, fredg <fgutk...@example.invalidwrote:
On Fri, 26 Sep 2008 10:03:59 -0700 (PDT), zufie wrote:
I have a report that return all the records (materials ordered) by all
callers each day.
I want the report to just show all the records (materials ordered) by
each individual caller each day
on a separate page.
I tried Hide Duplicates property, Force New Page all to no success.
Here is the code to my qry/record source for my report:
SELECT Trim([Last Name]) & ", " & Trim([First Name]) & " " &
Trim([Middle Initial]) AS Expr2, [qry DaysReport1].*, Caller.[Last
Name], Caller.[First Name]
FROM [qry DaysReport1] INNER JOIN Caller ON [qry DaysReport1].[Caller
ID] = Caller.[Caller ID];
What must I change on Properties of my report?
Thanks,
John

In Report Design View, click on View + Sorting and Grouping.
In the Field/Expression column, write
Expr2

In the lower panel set
Group Header = Yes.

Back in report design view, click on the group header. Set the Group
Header Force New Page property to BeforeSection. Place the Expr2
control in the Group Header.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail- Hide quoted text -

- Show quoted text -
Fred,
You are a GENIUS!!!!!!!!!!!!!!!!!!!!!

You made my day!!!!!!!!!!!!!!!!!!!!

THANK YOU!!!!!!!!!

John
Sep 26 '08 #3
On Sep 26, 1:05*pm, zufie <john.marru...@illinois.govwrote:
On Sep 26, 12:39*pm, fredg <fgutk...@example.invalidwrote:


On Fri, 26 Sep 2008 10:03:59 -0700 (PDT), zufie wrote:
I have a report that return all the records (materials ordered) by all
callers each day.
I want the report to just show all the records (materials ordered) by
each individual caller each day
on a separate page.
I tried Hide Duplicates property, Force New Page all to no success.
Here is the code to my qry/record source for my report:
SELECT Trim([Last Name]) & ", " & Trim([First Name]) & " " &
Trim([Middle Initial]) AS Expr2, [qry DaysReport1].*, Caller.[Last
Name], Caller.[First Name]
FROM [qry DaysReport1] INNER JOIN Caller ON [qry DaysReport1].[Caller
ID] = Caller.[Caller ID];
What must I change on Properties of my report?
Thanks,
John
In Report Design View, click on View + Sorting and Grouping.
In the Field/Expression column, write
Expr2
In the lower panel set
Group Header = Yes.
Back in report design view, click on the group header. Set the Group
Header Force New Page property to BeforeSection. Place the Expr2
control in the Group Header.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail- Hide quoted text -
- Show quoted text -

Fred,
You are a GENIUS!!!!!!!!!!!!!!!!!!!!!

You made my day!!!!!!!!!!!!!!!!!!!!

THANK YOU!!!!!!!!!

John- Hide quoted text -

- Show quoted text -
One more question I am now trying to figure out how to keep a series
of 4 questions form repeating under the Detail section of my report
for each caller?

That is, the report returns all the records (materials ordered) by
each individual caller each day on a separate page very nicely, but my
series of 4 questions repeats after each row of materials ordered by a
single caller.

So if a caller orders 2 materials (2 rows of data) then my report
returns one row of materials ordered by that caller, followed by the 4
questions, then another row of materials ordered by the caller,
followed by a 2nd copy of the same 4 questions.

I tried the same fix you showed me above but this time with the 4
questions but was not successful.

Thanks

John
Sep 26 '08 #4
On Sep 26, 3:10*pm, zufie <john.marru...@illinois.govwrote:
On Sep 26, 1:05*pm, zufie <john.marru...@illinois.govwrote:


On Sep 26, 12:39*pm, fredg <fgutk...@example.invalidwrote:
On Fri, 26 Sep 2008 10:03:59 -0700 (PDT), zufie wrote:
I have a report that return all the records (materials ordered) by all
callers each day.
I want the report to just show all the records (materials ordered) by
each individual caller each day
on a separate page.
I tried Hide Duplicates property, Force New Page all to no success.
Here is the code to my qry/record source for my report:
SELECT Trim([Last Name]) & ", " & Trim([First Name]) & " " &
Trim([Middle Initial]) AS Expr2, [qry DaysReport1].*, Caller.[Last
Name], Caller.[First Name]
FROM [qry DaysReport1] INNER JOIN Caller ON [qry DaysReport1].[Caller
ID] = Caller.[Caller ID];
What must I change on Properties of my report?
Thanks,
John
In Report Design View, click on View + Sorting and Grouping.
In the Field/Expression column, write
Expr2
In the lower panel set
Group Header = Yes.
Back in report design view, click on the group header. Set the Group
Header Force New Page property to BeforeSection. Place the Expr2
control in the Group Header.
--
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail- Hide quoted text -
- Show quoted text -
Fred,
You are a GENIUS!!!!!!!!!!!!!!!!!!!!!
You made my day!!!!!!!!!!!!!!!!!!!!
THANK YOU!!!!!!!!!
John- Hide quoted text -
- Show quoted text -

One more question I am now trying to figure out how to keep a series
of 4 questions form repeating under the Detail section of my report
for each caller?

That is, the report returns all the records (materials ordered) by
each individual caller each day on a separate page very nicely, but my
series of 4 questions repeats after each row of materials ordered by a
single caller.

So if a caller orders 2 materials (2 rows of data) then my report
returns one row of materials ordered by that caller, followed by the 4
questions, then another *row of materials ordered by the caller,
followed by a 2nd copy of the same 4 questions.

I tried the same fix you showed me above but this time with the 4
questions but was not successful.

Thanks

John- Hide quoted text -

- Show quoted text -
Never mind, I got it!

I was on the right track and in this case needed to select Group
Footer = Yes

Thank you!

J
Sep 26 '08 #5

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

Similar topics

2
4641
by: Phil Stanton | last post by:
Yes I know it can't be done in an editable form - well maybe not. Assuming I have a report textbox with CanShrink and CanGrow set to yes, is ther any way of calculating the length the textbox...
3
3683
by: CSDunn | last post by:
Hello, I have a situation with MS Access 2000 in which I need to display report data in spreadsheet orientation (much like a datasheet view for a form). If you think of the report in terms of what...
5
2291
by: Erwin | last post by:
At the moment I'm using a report which contains an indicator to show if a Service group of the company isn't working well or is working perfectly. This indicator is a "*" which looks like a traffic...
3
14123
by: tommy | last post by:
I am working with the Invoice report in the Northwind sample database. How can I see the SQL statement that provides the data to the report? Thanks.
4
1292
by: Mark 123 | last post by:
A97. I have a landscape report with 4 sub-reports. All reports including the main report use the same recordsource. The LinkMasterFields and LinkChildFields properties for all sub-reports...
0
1239
by: nikolaos | last post by:
Hi all!! i am relatively new to this forum. i am working on a big project in athens greece. it is all about office and vba. basically it is an automated testing software that tests whetther...
2
1932
by: Tom | last post by:
This is related to an earlier post entitled "Text in Query/Numbers in Report" Brief recap - report has a query as a record source. The query shows the correct data, the report translating the...
2
4304
Cintury
by: Cintury | last post by:
Hello, I saw a similar thread on this subject but did not find the answer I was looking for. I have a report that is used to find undistributed balances of food using a table and a subreport. It...
3
18680
by: creative1 | last post by:
Here is how you create a complex data report that involves parent and child commands and you can update information at runtime. Its pretty straight forward to work with simple queries; however,...
0
7224
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,...
0
7120
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7323
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,...
0
7380
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7039
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...
0
7494
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...
0
3180
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
1553
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 ...
1
763
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.