COGNOiSe.com - The IBM Cognos Community

IBM Cognos 8 Platform => COGNOS 8 => Report Studio => Topic started by: mayocraze on 11 May 2011 05:14:16 AM

Title: How can I show null values?????????????????????
Post by: mayocraze on 11 May 2011 05:14:16 AM
I've created a report which has [account number] & [processing amount], however all those accounts without processing amount are suppressed automatically.

I tryed to create a outer join relation, but it doesnt work...The null value rows are still not showing...

Anybody can help here? (I wont be able to adjust the FM model, so prefer some solution within rs itself)
Title: Re: How can I show null values?????????????????????
Post by: blom0344 on 11 May 2011 07:17:04 AM
You can relatively easily solve this with a union

union1:  [account_number]     [processing amount]

union2:  [account_number]     0

Use the result set in the report (make sure you total the measure) and group by account_number.

The result will show ALL account_numbers, with 0 where no processing amount exists