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

Conditional Display on listbox

Suppose I am using two listboxes on the same numeric dimension and I select one number from listbox, is there a way by which the other listbox will show me only those values greater than the previous selection?

1 Solution

Accepted Solutions
sudeepkm
Specialist III
Specialist III

Do you want something like below. Please see the attachment.

T111325.png

View solution in original post

6 Replies
sunilkumarqv
Specialist II
Specialist II

Can you post sample one ?

sudeepkm
Specialist III
Specialist III

Do you want something like below. Please see the attachment.

T111325.png

MK_QSL
MVP
MVP

Consider you have below script.

Load * Inline

[

  Number

  1

  2

  3

  4

  5

  6

  7

  8

  9

  10

];

Create list box with Number as field

Create second list box and write below in expression..

=IF(Number>=GetFieldSelections(Number),Number)

Not applicable
Author

yes, Sudeep exactly that. Thank you so much.

MK_QSL
MVP
MVP

have you tried with above reply?

Not applicable
Author

Yes but desired result wasn't coming. some other issues I guess