Create a view based on contains
Hi all,
I have a table "Guidance" and in that table I have a multiple choice field named "keywords". Now I want in another table to create a view based on a textfield "keyword selection" - my idea was the following :
let Xngl := 'keyword selection';
select Guidance [contains(concat('keywords', Xngl))]
The problem is that the only thing I can get Ninox to accept is the following :
contains(select Guidance.keywords,'keyword selection') - but this leaves me with a blank view.
Anyone who are able to help here ?
regards
Leo
3 replies
-
You can try:
let Xngl := lower('keyword selection'); select Guidance [contains(lower(text(keywords)), Xngl)]
Since you are allowing users to type in their own words in 'keyword selection, you need to make sure you make all of the text either lower or upper case.
Why not have the field keyword selection also be a multi-choice field that matches the keyword field in Guidance? That way you have more control and can use the selection number instead.
Content aside
- 5 hrs agoLast active
- 3Replies
- 19Views
-
2
Following