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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Including NULL results in PIVOT-based SSRS report

Status
Not open for further replies.

mkrausnick

Programmer
Apr 2, 2002
766
0
0
US
I have:
Code:
select userloc,event_type,count(*) as cnt from (
select distinct userloc,event_type,clientid
	from table1
) t2 group by userloc,event_type
) t1
pivot 
(
sum(cnt) for event_type in 
([New] , [Renew])
) t3

This produces a nice grid with user locations down and client events across.

If there are no records for a location containing the value 'Renew', for example, that value comes out NULL in the pivot result set, not zero as I would expect. If I then feed the result set into an SSRS Report, the row with the null value does not appear on the report.

How do I fix it so the report includes rows where one of the values is null?

Thanks,

Mike Krausnick
Dublin, California
 
Never mind - my statement that rows with NULL values do not appear on the report was incorrect. I must have done something else wrong.

Mike Krausnick
Dublin, California
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top