Superset filtering for substrings #31266
Replies: 2 comments 1 reply
-
Hey @reshmanov21 👋, I'm here to assist you with any bugs, questions, or contributions. Let's tackle this together! To filter by a substring match on a Superset dashboard, similar to using For your specific case, to find all values that match "blr" in a "Team Name" column, you can use the {
"col": "Team Name",
"op": "ILIKE",
"val": "%blr%"
} This filter configuration will match any "Team Name" that contains the substring "blr". The |
Beta Was this translation helpful? Give feedback.
-
@dosu I understand that this feature exists at the chart level filtering. But at a dashboard level, I am unable to search for a substring. Even if I do, I will have to select the results one by one manually from the filter results dropdown. Is there a way to select all on a substring search at a dashboard level? |
Beta Was this translation helpful? Give feedback.
-
How can I filter by a substring match on a superset dashboard? For example, let's say the values of a Team Name column is "team-blr-1", "team-blr-2", "team-del-1". I want to search for all values that match "blr" (Similar to LIKE in sql), instead of an exact string match.
Beta Was this translation helpful? Give feedback.
All reactions