Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am using an expression to create a List Box object. The expression is :
If( aggr( sum(SalesAmount), CalendarYear) > 0, CalendarYear).
It shows 5 values - 2010, 2011, 2012, 2013, 2014
The problem is whenever I select any value from this object, only selected value remains in the list Box while the rest of the values disappear from the List Box object.
How can I show all the excluded values too in Listbox?
Please find the attached screenshot.
Thanks
This should work
=Aggr(If(Sum({<CalendarYear>}SalesAmount) > 0, Only({<CalendarYear>}CalendarYear)), CalendarYear)
Update: Sample attached
May be try this:
Aggr(If(Sum({<CalendarYear>}SalesAmount) > 0, CalendarYear), CalendarYear)
Sorry its not working
![]()
This should work
=Aggr(If(Sum({<CalendarYear>}SalesAmount) > 0, Only({<CalendarYear>}CalendarYear)), CalendarYear)
Update: Sample attached
Is the Hide Excluded from Properties - General Unchecked?
Awesome!
Hi Abhishek,
Please check if you have unchecked the Hide excluded in listbox properties.