Hi,
I am just looking if this feature is possible in Metabase.
-
Casecading filters
If user select one filter , second filter values filtered based on first filter
-
Sending multiple parameters in filter
How can we filter the dashboard with multiple values in filter, currently its only accepting one value
2 Likes
jornh
2
For 1. cascading filters there’s an enhancement proposal, you can vote for it by
it
-
Multi-param filters is being worked on, looks like it could be part of next upcoming version:
1 Like
davos
3
Re #2 that appears to be possible using Field Filters
See https://metabase.com/docs/v0.20.0/users-guide/12-sql-parameters.html
You can then write a query that looks like
SELECT count(*)
FROM products
WHERE {{created_at}}
and it appears Metabase will format your query so the {{created_at}} becomes an IN clause.