When analyzing data in Google Sheets, it's helpful to focus on specific parts of your dataset. Whether you're interested in certain values, colors, or dates, Google Sheets filters can assist you. In this article, I’ll guide you on how to set up conditions correctly while making sure you don't affect other users in shared spreadsheets, and share a few unique tips you won’t find elsewhere.
Google Sheets filter is a standard tool that lets you hide a part of your data that you don't need at the moment. This way you don't need to delete the data. You simply hide it temporarily and can display it back any time.
by
Latest comments
what is the Custom Formula to exclude multiple text or values in single column
You can use Filter by condition --> Custom Formula =NOT(REGEXMATCH(A2, "text-1|text-2|text-3"))
Hello Ashwin,
Unfortunately, Google Sheets' built-in filter doesn't support complex exclusion logic directly via a custom formula. I'd recommend using the FILTER function or QUERY function instead.
I'm having problems sharing a sheet that I want users to be able to filter/sort, but not edit (not change cell values). In your example above, you talk about having an employee filter to look at only *their* data in the sheet - this looks like my use case, where the manager enters the data and the employee can filter and see it, but not edit it. I seem to be missing some important step in how this all works because when I share the link with others, they can't access any filter views. Can you fill me in on what I'm missing here?
Hello JC,
When you share files and give users permissions to only view or comment on data, they can create their own filter views via Data > Filter views > Create new temporary filter vew. This menu is always accessible in spreadsheets. However, the users won't be able to see other users' filter views. Each user can create, save and see only his/her filter views.
Also, I'd recommend sharing the spreadsheet directly with users by adding their email addresses in the sharing settings.
Filter by, "Text Contains", is there an escape for the wildcards '*' and '?' ? Please include, or say there isn't, and offer the regex =REGEXMATCH(D:D,"\?")
Thanks!
Thank you very much for your feedback, John. :)
The formula wasn't mentioned intentionally since:
1) it works with textual values only, meaning the users would have to wrap their numbers in the TEXT function and then with the one you suggested.
2) wildcard characters cannot be used in your formula. It looks for the exact sequences you indicate in "". Thus "\?" won't find anything since we don't have this in our cells.
3) the function is case-sensitive and won't find anything if I enter "d" for all these "Dark Chocolate" cells.
4) all of the above make the formula too complicated to use, leaving the easiest option of wildcard characters.