I have one formula in crystal report, which displays fixed text if the value is null. this works fine. but if the report is blank, then also i see the fixed text.
My Question: How to NOT show the fixed text when the report is blank?
Below is the formula.
Local StringVar x;
If IsNull({objectName}) or ({objectName} ="" ) then
x := "Fixed Text"
Else
x :={objectName}