You could do this by using a formula field that puts very unique strings before and after the actual value. Then filter on the formula field using contains.
my original value
The formula field would be something like this:
"^" & {original field} & "$"
The formula field would then show
^my original value$
Then you could set the filter to something like
contains ^My
or
contains value$
If your values might contain ^
or $
in them, just repeat them a few more times, or use a different symbol until you know they are unique.
You could do this by using a formula field that puts very unique strings before and after the actual value. Then filter on the formula field using contains.
my original value
The formula field would be something like this:
"^" & {original field} & "$"
The formula field would then show
^my original value$
Then you could set the filter to something like
contains ^My
or
contains value$
If your values might contain ^
or $
in them, just repeat them a few more times, or use a different symbol until you know they are unique.
Thank you so much for this tip!! I was surprised to find that AirTable doesn’t allow for wildcards in formulas or “starts with” in filtering views, but this workaround is perfect! :star_struck:
While the workaround is good, I personally need this as a filter choice for so many views and in the Interface, so adding it is a great idea.
Agree, could use this filter choice as want to avoid adding multiple formula columns as a workaround. As another workaround tried nesting groups to do a filter of "contains" for column and "not" to eliminate others based on different values. However, there is a limit on the number of nesting groups so would not cover all my needs.