Filters features enhancement

Hi,

I am just looking if this feature is possible in Metabase.

  1. Casecading filters
    If user select one filter , second filter values filtered based on first filter

  2. Sending multiple parameters in filter
    How can we filter the dashboard with multiple values in filter, currently its only accepting one value

2 Likes

For 1. cascading filters there’s an enhancement proposal, you can vote for it by :+1: it

  1. Multi-param filters is being worked on, looks like it could be part of next upcoming version:
1 Like

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.