Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have table like below.
Student
John
Cline
Viennesa
Ivan
Mike
I want to create a button to exclude John & Mike from selection once Button is pressed. How can i achieve this.
Thanks
Oops ok Got it. You want to see who are the possible Teachers for the selected student when button is clicked.
Just add another action Select Possible and add field Teacher. Like below?
For some reason my in field selection for my actual project is not working. But i tried on my example project and it works fine.
Could it be because the search filed might have spaces.
Could be possible. So use like trim(yourfieldname) in the script to get the field values without spaces.
What are your actual values look like can you screenshot here?
could you explain what is happening in below formula
= '(' & Concat({< Student -= {'John', 'Mike'} >}Student, '|') & ')'
I understand that studen not equal t John & Mike. But what is the purpose of Concat
Concat picks up multiple values so in this case it will pick student names other than John and Mike. Like Cline, Ivan and Venessa. So in a button action selection string this is how you will with hardcoded like
(Cline|Ivan|Vanessa) So with concat this is exactly what the concat picking like
(Cline|Ivan|Vanessa). hope this helps.