How to Hide Blank space
I'm getting information from 2 tables for a report
TABLE1 - Empno, EmpName, Job, v.no, Startdate
TABLE2 - Empno,v.no,Startdate,Notes
Parameters - 1.Date, 2.Area and 3.EmpId
after entered the parameter values,
Date - 11/4/2003, Area - NY, EmpId- 1234
I got the result something like (Sorted by Start Date and VisitNo)
(using the suppress option, i eliminate the doublicates in all columns)
Empno Empname VisitNo Start Date Notes
1234 XXXX 10 10/01/2003 zzzzzzz
77 10/01/2003
99 10/30/2003 ppppppp
But I need :
Empno Empname VisitNo Start Date Notes
1234 XXXX 10 10/01/2003 zzzzzzz
77 10/01/2003 99 10/30/2003 ppppppp
Formula :
(
{t1.StartDate} <={?Date}
)
and
(
if ({?empID} <>"ALL" then
{?empID}={t1.Empno}
else if ({?empID} ="ALL" then
true
)
and
(
if ({?area} <> "ALL" then
{?area}={t1.area}
else if ({?area} = "ALL" then
true
)
Note : In the data the start date for visit no 10 and 99 are same.
I tried the DETAIL-Section Expert- select the checkbox -supress blank section, but its not working.
Any solution to "hide the blank spaces" is helpful for me.
Thanks in adv.
I'm using CE 8.5. CR 8.5 and Sql Server
please let me know if u need more info.
Thanks
MK
I'm getting information from 2 tables for a report
TABLE1 - Empno, EmpName, Job, v.no, Startdate
TABLE2 - Empno,v.no,Startdate,Notes
Parameters - 1.Date, 2.Area and 3.EmpId
after entered the parameter values,
Date - 11/4/2003, Area - NY, EmpId- 1234
I got the result something like (Sorted by Start Date and VisitNo)
(using the suppress option, i eliminate the doublicates in all columns)
Empno Empname VisitNo Start Date Notes
1234 XXXX 10 10/01/2003 zzzzzzz
77 10/01/2003
99 10/30/2003 ppppppp
But I need :
Empno Empname VisitNo Start Date Notes
1234 XXXX 10 10/01/2003 zzzzzzz
77 10/01/2003 99 10/30/2003 ppppppp
Formula :
(
{t1.StartDate} <={?Date}
)
and
(
if ({?empID} <>"ALL" then
{?empID}={t1.Empno}
else if ({?empID} ="ALL" then
true
)
and
(
if ({?area} <> "ALL" then
{?area}={t1.area}
else if ({?area} = "ALL" then
true
)
Note : In the data the start date for visit no 10 and 99 are same.
I tried the DETAIL-Section Expert- select the checkbox -supress blank section, but its not working.
Any solution to "hide the blank spaces" is helpful for me.
Thanks in adv.
I'm using CE 8.5. CR 8.5 and Sql Server
please let me know if u need more info.
Thanks
MK