I’m setting up an Explore with an always_filter
parameter to remove rows with test data. The dimension is type yesno
, and the default value for the Explore is “no”.
So my LookML looks like this–
In the user View file:
dimension: is_test_data {
type: yesno
sql: ${TABLE}.is_test_data ;;
}
In the Explore file:
always_filter: {
filters: {
field: user.is_test_data
value: "no"
}
}
I would expect to see a straightforward yesno filter in the Explore by default like this:
But in Looker 4.14, I get an advanced filter, like this:

Is there a way I can get the default filter to look like the first screenshot?
Both are functionally equivalent, of course, but the first version of it seems more user-friendly. This filter will be the default of our most popular Explores so I’d like to make sure that I’m doing this correctly.
(Also, if there’s an alternative, better approach to what I’m doing than always_filter, I’d love to hear that, too.)
Thanks!