I created four tablixes for my report. if at least one tablix has no data, I would like to show 'no row message' and no data for other tablixes. Any suggestions are appreciated.
I wrote No row message for only one tablix, and i wrote the following condition for visibility for all tablixes .
=IIF((countrows("Dataset1") = 0
AND countrows("Dataset2") = 0
AND countrows("Dataset3") = 0
AND countrows("Dataset4") = 0)
,TRUE,FALSE)