Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
Need Help please.. !!!
I need to show an expression when any field is selected otherwise it should not show..
put in condition show expression box
getselectedcount(field name)=1
hi..
i dont have a specific field name. any field is selected then it should be shown other wise it should be hidden
Thanks
You need to have 2 parameters:
a. count the number of selections:
b. resolve a conditional show with that count:
In your conditional show: 1=if(count(GetCurrentSelections()) >=1, 1, 0)
put in condition show expression box
getselectedcount(field1 name) =1 or getselectedcount(field2 name) =1...so on
and you can simplify that to:
count(GetCurrentSelections())>=1
(no need for doing an "if" and compare with 1)