catchingup
Technical User
I am using CR11 to create a meeting report.
I have the report grouped by business group in Group1.
In the detail section, I want it to display the meeting(s) that are appropriate - see diagram below.
The problem, I am having is that is putting all dates on separate lines even though the variable formulas are on the same row.
How can I correct this?
I have the following formulas set up
GROUP1 Header
{@Set Variables} =
whileprintingrecords;
dateVar MtgType1;
dateVar MtgType2;
dateVar MtgType3;
dateVar MtgType4;
DETAILS
[/b]{@MtgType1} =[/b]
DateVar MtgType1;
MtgType1 := CDate({@Meetingtype1);
[/b]{@MeetingType1} = [/b]
if (not isnull({Meetings.MeetingName}) and {Meetings.MeetingName} in "MtgType1"
and {Meetings.Date} < CurrentDate)
then {Meetings.Date}
{@MtgType2} =
DateVar MtgType2;
MtgType2 := CDate({@Meetingtype2);
{@MeetingType2} =
if (not isnull({Meetings.MeetingName}) and {Meetings.MeetingName} in "MtgType2"
and {Meetings.Date} < CurrentDate)
then {Meetings.Date}
There may be multiple dates that apply to both of these formulas. what I am trying to acheive is a details section that looks like this:
Meeting Type1 Meeting Type2
06/14/06 07/15/06
09/30/06 10/18/06
05/01/07 07/10/07
07/15/07
What I am currently getting looks like this:
06/14/06
09/30/06
05/01/07
07/15/06
10/18/06
07/10/07
07/15/07
How can I correct this?
I have the report grouped by business group in Group1.
In the detail section, I want it to display the meeting(s) that are appropriate - see diagram below.
The problem, I am having is that is putting all dates on separate lines even though the variable formulas are on the same row.
How can I correct this?
I have the following formulas set up
GROUP1 Header
{@Set Variables} =
whileprintingrecords;
dateVar MtgType1;
dateVar MtgType2;
dateVar MtgType3;
dateVar MtgType4;
DETAILS
[/b]{@MtgType1} =[/b]
DateVar MtgType1;
MtgType1 := CDate({@Meetingtype1);
[/b]{@MeetingType1} = [/b]
if (not isnull({Meetings.MeetingName}) and {Meetings.MeetingName} in "MtgType1"
and {Meetings.Date} < CurrentDate)
then {Meetings.Date}
{@MtgType2} =
DateVar MtgType2;
MtgType2 := CDate({@Meetingtype2);
{@MeetingType2} =
if (not isnull({Meetings.MeetingName}) and {Meetings.MeetingName} in "MtgType2"
and {Meetings.Date} < CurrentDate)
then {Meetings.Date}
There may be multiple dates that apply to both of these formulas. what I am trying to acheive is a details section that looks like this:
Meeting Type1 Meeting Type2
06/14/06 07/15/06
09/30/06 10/18/06
05/01/07 07/10/07
07/15/07
What I am currently getting looks like this:
06/14/06
09/30/06
05/01/07
07/15/06
10/18/06
07/10/07
07/15/07
How can I correct this?