Forum Discussion
Word Search Slicer?
- 3 years ago
Ok well her is one example of the way you can solve it.
1. create a table with all your keywords
2 cross join that table to your table you want to search
3 create an if statement that returns the colour value of the description if it contains a keyword
4 remove all other rows.
see example attached.
and one last question, is this question reflective of your real data or do you have bigger volumes of what you are searching for, and how big is your data?
Real data has about 30 columns and 4k rows
- vanessafvg3 years ago
Community Champion
Ok well her is one example of the way you can solve it.
1. create a table with all your keywords
2 cross join that table to your table you want to search
3 create an if statement that returns the colour value of the description if it contains a keyword
4 remove all other rows.
see example attached.
- Gerbil3 years ago
Helper I
Thank you! This worked out great.