Hi we are using Pentaho report designer and we want to hide a subreport if there is no data .
We have tried to use this formula :
not(isemptydata())
in the visible expression but it does not seem to work .
So how to hide a subreport if no data .
Here you are using all small letters like not(isemptydata()). You can't use like that all are capitals like =NOT(ISEMPTYDATA()). You add this line to your report it will work i think.
Otherwise also you can hide that sub report =IF(ISEMPTYDATA();"False"; "True").
Thank you..