Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I want to show a list box showing only customers who have open sales lines, my expression is :
If(Count (Total Order_Number)>0,Customer)
However this wont work, any pointers?
You need to wrap your condition within an aggr-function: aggr(count(Order_Number)>0, Customer)
- Marcus
If(Count (only(Total Order_Number)>0,Customer))
Sorry doesn't work, empty table.
You need to wrap your condition within an aggr-function: aggr(count(Order_Number)>0, Customer)
- Marcus
That sorted it Marcus, many thanks :
if( aggr(count(Order_Number), Customer)>0,Customer)