Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
durgabhavani
Creator III
Creator III

help me to hide the values in listbox?

Hi All,

I have listbox as below.

billing

tenders

duessection

payments

fines

Now i wrote expression to hide the tenders and duessection values in listbox as below

=Aggr(Only({<billing -= {'tenders', 'duessection'}>} billing),billing)

but it is showing listbox as below

billing

tenders      -

duesection -

payments   payments

fines           fines

It is showing "-" symbol for expression values. Please help to what to do to hide the values.

Thanks,

Durga

1 Solution

Accepted Solutions
11 Replies
stigchel
Partner - Master
Partner - Master

I'm guessing you have a listbox with the field billing and added an expression in the expression tab.

Remove the expression from the expression tab and instead of the field billing select expression on the bottom of the field list. There copy your expression.

awhitfield
Partner - Champion
Partner - Champion

Hi Durga,

check on the expressions tab of your list box, by default '-' is the symbol for NULL and Missing Values, you change this to whatever you want!

Hope this helps..

Andy

Anonymous
Not applicable

If you want to hide tenders and duessection, write an expression as

if(billing <> 'duessection' and billing <> 'tenders', billing)

stigchel
Partner - Master
Partner - Master

ListBoxExpression.png

anbu1984
Master III
Master III

Type your expression by selecting <Expression> from drop down as in this pic

157866.png

durgabhavani
Creator III
Creator III
Author

Hi Piet Hein,

yes, I am writing expression in expression tab! Great Catch!

Thanks a ton!!

Durga

sunny_talwar

Is this what you want?

Used the following expression: =If(billing<> 'tenders' and billing <> 'duessection', billing)

Also PFA the sample qvw file.

Best,

Sunny

Anonymous
Not applicable

remove the expression you have added

go to properties>general>Field  scroll down at the end you will find <Expression>

Click that

and paste this code there if(not match(billing,'tenders', 'duessection'),billing)

and click ok

durgabhavani
Creator III
Creator III
Author

Much better expression! Thanks bhagirath!