Posted on: 6/29/2015 7:56:21 AM | Views : 2543

I want to Hide a Text box in rdlc report if  a certain field value is NULL and I have multiple datasets in the report i tried 
=IIf(IsNothing(Fields!WebRemarks.Value, "DataSet_Vaccine"),True,False)
but it gives me error 
Error 1 The Hidden expression for the text box ‘Textbox5’ refers directly to the field ‘WebRemarks’ without specifying a dataset aggregate. When the report contains multiple datasets, field references outside of a data region must be contained within aggregate functions which specify a dataset scope. 

Go to the complete details ...