ssrs: one static row matrix, multiple columns will not filter out nulls
Posted
by pbarton99
on Stack Overflow
See other posts from Stack Overflow
or by pbarton99
Published on 2010-04-27T19:01:23Z
Indexed on
2010/04/27
19:03 UTC
Read the original article
Hit count: 245
Using a ssrs 2005 matrix client side. I want to list the multiple addresses of one person, hence one row, multiple columns. The Column field is =Fields!StreetName.Value
. The data details field is =First(Fields!StreetPrefix.Value) & " " & First(Fields!StreetName.Value)
. The datasource has a row for each address; however, some rows will have nulls since the datasource is composed of outer joins.
The column grouping works, but the first column is always empty, (first 2 rows of datasource are null) addresses appear only after the empty column. I want to filter out nulls on the matrix, but its like the filter is ignored. I have also tried having the dataset return an empty string for a null streetname and setting the filter to =Fields!StreetName.Value != =""
but no difference.
What am I missing?
© Stack Overflow or respective owner