Negative filters (ie. how do you search for cells that do not match a string)
Negative filters (ie. how do you search for cells that do not match a string)
Hello!
So basically I'm trying to search for rows that do not contain a certain piece of string.
For example, say I have a column that contains the following unique values : firefox, internet_explorer, safari. How do I show *only* the rows that are not containing 'safari' (ie, the rows that include firefox OR Internet_explorer).
I tried various negative lookup regexp to no avail...
So basically I'm trying to search for rows that do not contain a certain piece of string.
For example, say I have a column that contains the following unique values : firefox, internet_explorer, safari. How do I show *only* the rows that are not containing 'safari' (ie, the rows that include firefox OR Internet_explorer).
I tried various negative lookup regexp to no avail...
This discussion has been closed.
Replies
Allan
[code]fnFilter('^(?:(?!Completed).)*$'[/code]
Regards,
Allan