Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can I suppress blank values in a list box?
use expression in list box and use this expression
if (field <> '',field)
hope it helps
Raj
use expression in list box and use this expression
if (field <> '',field)
hope it helps
Raj
If(Len(Trim(Field)),Field)
Yes, in list box take expression instead of direct field.
Expression:
if(field<> ' ',field)