Last active
January 17, 2020 15:24
-
-
Save kern-me/2a6ef94ac0698ef4233ea8f3a6206cdf to your computer and use it in GitHub Desktop.
Google Sheets - Filtering Multiple Conditions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// regexmatch(columnRange, "(?i)x|y|z") | |
regexmatch(A:A, "(?i)term1|term2|term3|term4|term5") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example of using the regexmatch function within Google Sheets to filter multiple terms that exist in a given column.