Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I have a button that selects excluded. How do I use the same button to clear the same field selection.
Thank you
Kind regards
Nayan
You can put a condition in the search string expression to tell that if the field has already selections, then select null which is equivalent to clear. May be like:
= If(getselectedcount(SOURCE), null(), <Your Expression>)
You can put a condition in the search string expression to tell that if the field has already selections, then select null which is equivalent to clear. May be like:
= If(getselectedcount(SOURCE), null(), <Your Expression>)
HI Nayan,
For this scenario, I normally create another button with clear functionality. I will also have a variable with Toggle value, which I would be using to show and hide the buttons.
let me know if you need example.
Thanks!
Thank you Tresesco, it worked
Kind regards
Nayan