Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I am having one requirement as,
suppose,
I am having 1 listbox as Region which is having values A,B,C and and having another listbox which is having metrics like,1,2
i want metric list as if any of the Region is selected then in metric list it should display as 1,2 and if none of the region is selected then on 1 value in metric list.
Thanks!
in metrics list box choose expression and write below expression
=if(GetSelectedCount([Region ])>0,metrics ,1)
Thanks
BKC
PFA