Hide Rows which are Null

  • I have 3 datasets in my report. Dataset 2 and 3 are lookup on Dataset1.

    However , my report brings all the records from Dataset1. Which form the groups like Region, Location, Department etc... and the details get populated from Dataset2 and Dataset3 .Since the source is Dataset 1 , it pulls all the rows , with or without values.

    I only want to view values in all columns where value is > 0 .

    I tried the row visibility option and wrote the expression

    IIF(Is Nothing(Fields!Column1.value),True,False)

    But get the error : "Report Item expression can only refer to fields within the scope of Dataset"

    Also tried,

    IF(Is Nothing(Fields!Column1.value, "DataSet2"),True,False)

    Also tried Tablix filters but its giving the same error. Can anyone suggest. This is the main and last part and i need to get this going. Any ideas will be appreciated.

  • If values > 0 are to be viewed then in that case why not bring values > 0 only ?

  • Since I am using lookup for 2 other datsets , I need to get all values. Its only after its displayed , I want the Nulls to go away

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

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