I am working in Crystal 9, using a SQL Stored Procedure for the datasource.
I have 7 formulas like the following: (only change is the date in the IF statement, to meet the requirements of the day of the weeks' schedule)
Now I have it in the detail section, but when the report is run they display in a cascading down way, rather than straight across. Any way around this, without a pivot table, or subreports?
Thanks for any tips or advice.
Sincerely,
KrystlDuk
I have 7 formulas like the following: (only change is the date in the IF statement, to meet the requirements of the day of the weeks' schedule)
Code:
IF {rsp_RoomSchedulingCalendar.ClassSessionDate} =
{?@StartDateParam}+1
THEN
TOTEXT({rsp_RoomSchedulingCalendar.ClassSessionDate},"MM/dd/yyyy") +
CHR(13) +
{rsp_RoomSchedulingCalendar.Class_No} +
CHR(13) +
{rsp_RoomSchedulingCalendar.CourseName} +
CHR(13) +
{rsp_RoomSchedulingCalendar.SessionTime} +
CHR(13) +
{rsp_RoomSchedulingCalendar.Instructor} +
CHR(13) +
{rsp_RoomSchedulingCalendar.Instructor2} +
CHR(13) +
{rsp_RoomSchedulingCalendar.Instructor3}
Thanks for any tips or advice.
Sincerely,
KrystlDuk