I want to display "No Data Available" when the query doesn't return any rows and display a crosstab with result if there is data returned from the query.
At the moment, I get a "blank" crosstab if there is no data and it is not intuitive enough for our end users. I know conditional Block would solve this problem, but how do I detect no data return?
If (data is not null)
display CROSSTAB
else
display ("No data available")
Please advise.
Thank you.