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

How can slider values affect selection?

Hello All,

I am using comparative analysis to compare clients and their peers.  I have 2 multi-boxes for selection purposes to choose clients and peers using different characteristics.  We also want the help user to compare comparable clients (i.e. revenue is in given band) by using sliders.  Once the user sets the slider's min and max values; we would want clients (in multibox dropdown) to be excluded from selection.  How can this be done (triggers, scripting, any other ideas)?

Thanks,

Ronak

3 Replies
vgutkovsky
Master II
Master II

I think you would the best visual appearance by using an aggr() expression as your multibox field. Something like this:

aggr(

if(sum(revenue)>=vMinValue and sum(revenue)<=vMaxValue,client)

,client

)

Regards,

Vlad

Not applicable
Author

Thanks Vlad.  I could not find Visual Appearance for multibox field.  However, I did take your idea and created new expression as my multibox field and it achieves the same result.

vgutkovsky
Master II
Master II

That's what I meant. Visual appearance was just an English term not a technical term

Vlad