multi-value parameter not reporting NULL values when using a left outer join

  • my stored procedure (from SQL server) includes a left outer join. results show in SQL management studio as NULL values, but my report is not pulling this data because i have a multi-value parameter that does not allow null values...... can someone help?

    example:

    select c.custid, s.department from calllog c

    left outer join subset s

    on c.custid = s.custid

    i want to return the customer even if they have no department valued on the subset table.

  • i also tried to define a dataset with visual studio 2005 (for the SSRS report) like this:

    select NULL as department

    union all

    select distinct upper(department) from subset

    order by department asc

    DOESN'T WORK!

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply