Hi all,
I'm setting the visible property on column True/False in a datawindow object. I have two other fields that I base the decision on... uncert_included and accredited_requested.
Here's the logic behind the visible property:
if ( (IsNull(uncert_included) AND IsNull( accredited_requested ) ), 0,
if ( (uncert_included = 'T') OR (accredited_requested = 'T'), 1, 0))
In the database for this particular record, uncert_included = 'F' and accredited_requested is NULL.
In theory, the column/field should not be visible, but it is. Can anyone help me fix the logic? Using PB2022 R3.
Much appreciated!
~~~Tracy