Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

List Box - Condition

Hello Community!

How do you add a list box that shows ONLY the company names that are associated with sales/orders (i.e. %Fact_Key is not null)?

Thank you for any assistance!

2 Replies
JonnyPoole
Employee
Employee

Change the list box 'field' to be an expression and enter something like this:

=if( aggr(sum(Sales)>0,Customer) , Customer)

maxgro
MVP
MVP

maybe with an expression in listbox

=if(aggr(count(%Fact_Key ),company)>0,company)