Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi All
My query is if I've a listbox say Fruits
Fruits:
Apple
Banana
Pineapple
Mango
Strawberry
I want to Create a listbox as:
Fruits:
Apple
Banana
Pineapple
Mango
Strawberry
Not Mango
If someone selects Not Mango, it must reflect in all the charts showing + I must be able to select Not Mango and Banana together.
Any kind of help will be appreciated. Thanks in advance.
Regards
Pratyush
Hi,
See Attachment.
Regards,
Antonio.
Hi Pankaj
I've already tried implementing this but it is impossible to select NOT Mango and Strawberry together.
Regards
Pratyush
Hi,
This is very resource intensive and may be no good for a lot of data.
Add a new listbox on field Fruit and assign it to a new alternative state, Not. Label the listbox 'Not'.
Add a listbox with expression
=Aggr(if(isnull(GetCurrentSelections('','','','','Not')),Fruit ,only({$-Not}Fruit )),Fruit )
Add this textbox:
=if(sum(Trees)-sum({Not}Trees)>0,sum(Trees)-sum({Not}Trees),sum(Trees))
If you select Mango or any other fruit in the Not list you should get the result you need. This may not be practical for large data sets.
Good luck.
Andrew
Which is the result of
" Not Mango and Banana together." ?