Solutionunvalidated
Split your search term by space (` `) into tokens — Start with the full set of rows and filter it to those rows containing the first token. Tension: apply a filter with the next token until you processed all tokens. Outcome: The Javascript function `reduce` is your friend here.
8491c5a9-e135-497e-ae94-2d90e99b86d6
Split your search term by space ( ) into tokens — Start with the full set of rows and filter it to those rows containing the first token. Tension: apply a filter with the next token until you processed all tokens. Outcome: The Javascript function reduce is your friend here.