Two Column Report Question
Question.
I have a "simple" two column report.
Page is defined as two columns.
[ReportTitle]
[GroupHeader] *
[Header]
[MasterData] **
[PageFooter]
* Based on condition of change of a persons name from a querry
** Based on Dataset showing "items" belonging to person
I'm creating a simple report that goes
Customer A (in GroupHeader) | item
item 1 (in Master Data) | item
item 2 (in Master Data) |Customer F
Customer B | item
item | item
Customer C |
item |
item |
Customer D |
item |
item |
item |
Customer E |
I want to print going down the 1st column, then start on the top of the second column and go down.
This is working.
What isn't working is the situation where the GroupHeader (Cutomer E for example) fits at the bottom of the 1st column and the masterdata moves to the top of the 2nd column, which "widows" the GroupHeader. How can I keep these together?
Thanks for the assist!
Lance
I have a "simple" two column report.
Page is defined as two columns.
[ReportTitle]
[GroupHeader] *
[Header]
[MasterData] **
[PageFooter]
* Based on condition of change of a persons name from a querry
** Based on Dataset showing "items" belonging to person
I'm creating a simple report that goes
Customer A (in GroupHeader) | item
item 1 (in Master Data) | item
item 2 (in Master Data) |Customer F
Customer B | item
item | item
Customer C |
item |
item |
Customer D |
item |
item |
item |
Customer E |
I want to print going down the 1st column, then start on the top of the second column and go down.
This is working.
What isn't working is the situation where the GroupHeader (Cutomer E for example) fits at the bottom of the 1st column and the masterdata moves to the top of the 2nd column, which "widows" the GroupHeader. How can I keep these together?
Thanks for the assist!
Lance
Comments
GroupHeader1.KeepTogether:=true;
GroupHeader1.KeepChild:=False;
MasterData1.KeepTogether:=true;
MasterData1.KeepChild:=False;
I am using 3.10.
I removed all the KeepTogethers except for GroupHeader.
It still doesn't move the group header to the 2nd column.
The only thing I can do is select Reprint On New Page and it will put the group header on the top of the column again.
thats not what I see.
Currently report is:
Page Properties - 2 columns
Report1 - Report
ColumnHeader1 - ColumnHeader
Breaks on a specific datafield
GroupHeader1 - GroupHeader
KeepTogether=True
Reprint on New Page=True
Header1 - Header
MasterData1 - MasterData
KeepTogether=False
Footer1 - Footer
GroupFooter1 - GroupFooter
PageFooter1 - PageFooter
I've tried about every combination and still no go.
i ll post a small demo in the binaries newsgroup shortly
for Lanceras