Discussion:
Visible
(too old to reply)
PeterJ
2009-08-30 23:26:09 UTC
Permalink
Hello all out there. Could anyone assist me please. Is it possible
to make a item visible or not based on data within a field?

Thanks.
unknown
2009-08-31 07:45:28 UTC
Permalink
Hi Peter,

yes, that is possible. In the properties for the item
(field or expression or whatever) edit the visible
expression. To do so click the little button right
beneath the checkbox named "Visible". Type in an
expression which returns 1 when the item should be
visible and 0 otherwise. Usually that is something like
this:

if( amount = 0, 0, 1)

The above expression would hide the item when the
amount is equal to 0 and show it otherwise.

HTH

Chris Werner
f+s software gmbh
Post by PeterJ
Hello all out there. Could anyone assist me please. Is it possible
to make a item visible or not based on data within a field?
Thanks.
Loading...