Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crosstab displaying a blank column on left outer join

Status
Not open for further replies.

mcresong

Programmer
Mar 11, 2003
4
US
I have a crosstab report that displays Employees as rows and Certifications as the columns. The summarized field displays the date of the employee obtained that certification. I needed the report to display employees without any certifications, so I changed the linkage to Left Outer. Now the report includes all employees, but added a blank column (no heading or data) as the first column in my crosstab. I have tried suppressing blank columns & rows, but that didn't eliminate this first blank column. Any suggestions ?

Thanks !
 
The blank column probably means that there are blank or null dates, which makes sense if they don't have certifications.

You might try creating a formula for use in the cross-tab which contains:

if isnull({table.date})
or
{table.date} < currentdate - 10000 then
cdate(2050,1,1)

Then you'd get a false date, if that's your concern.

I'd probably create 2 cross-tabs, one on top of the other, which are each filtered by whether people have or have not had certification. If they haven't. don't use a date field as it isn't applicable.

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top