Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have the following list box that contains an expression to count files associated with each customer
When I make a selection, it turns green and the non selected values are grey, my question is, can I keep the Values showing even though it's not selected.
I want the below list box to show the values from the above list box
Hi,
you have to use a set analysis to ignore the selection on the field, like
Count({<CompanyName=>} CompanyName)
Hi,
you have to use a set analysis to ignore the selection on the field, like
Count({<CompanyName=>} CompanyName)
One way of doing it is to use an expression in your list box as count({1}CompanyName) which will show the value ignoring the current selection. The drawback is that you won't see the actual values when you make a selection.