Question : Display No Rows or No Data Found Message for the Matrix in SSRS

Display No Rows or No Data Found Message for the Matrix in SSRS
Code Snippet:
1:
2:
3:
4:
5:
6:
Question ; I wanted to show as  NO DATA FOUND  WHEN THERE  ARE NO ROWS OR DATA FOUND  in   a  matrix....   I have used the below expression , but it throws me an error.. 
 
=IIF (CountRows(  "DS_SP_Industry_Classification_Invoices_Received_Month_Wise_Last_Year"))=0, True,False)
 
 
Please Correct the above expression and provide me the Solution .....

Answer : Display No Rows or No Data Found Message for the Matrix in SSRS

Hi
Try this:

Add a text box with expression
=IIF(Count(,"DataSet1")=0,"No Data Returned", nothing)

and set the visibility of this textbox as
=IIF(Count(,"DataSet1")=0,False,True)

Regards


Random Solutions  
 
programming4us programming4us