Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Here in this list box i want to display only 2012,2013,2014 only .how can i ?
Instead of taking the field directly in the list box, use an expression like:
=If(Match(YearField, 2012,2013, 2014), YearField)
Do you want to do analysis over these 3 years only?
If so, then load data of only these 3 years. this way you can optimize your application by reducing its size.
i have already used this expression but it is showing the same .
Hi,
Try like
If(wildmatch(YearField,'*2012*','*2013*','*2014*'),YearField).
If possible post your sample app.
Regards
Perhaps there is some issue specific to your data. Try to share your sample data.
Hi,
Try like this
=Aggr(If(Match(YearField, 2012,2013, 2014), YearField), YearField)
Regards,
Jagan.
hi
try to load the data only to related 3 years as ur requirement if you want analyse only 3 year data. it will reduce the size & app also will be faster.