My Setup
I've created a data model structure in Metabase with the following components:
- Base Database Tables:
Partners
table with columns includingPartnerId
andName
Contracts
table with columns includingContractId
,PartnerId
, andArea_Name
(the public area name field)
- Custom Model:
- Model 6 (Contract Performance Dashboard) which joins these tables and includes both
PartnerName
(from Partners) andArea_Name
(from Contracts)
- Database Relationships:
- In Metabase Admin, I've defined a Foreign Key relationship between
Contracts[PartnerId]
andPartners[PartnerId]
- I've also defined Foreign Key relationships from Model 6 where
PartnerId
andContractId
are defined as foreign keys to the source tables
The Issue
I'm trying to create cascading filters in my dashboard where:
- The user first selects a Partner (from
PartnerName
) - Then the second filter shows only the
Area_Name
values that belong to that Partner
However, I'm encountering the following issues:
- When adding the first filter for
PartnerName
(category type), I expected it to automatically show me a list of choices, but I had to go into Edit and choose the Model in order to get that list. After doing that, the filter works correctly. - When adding the second filter for
Area_Name
and trying to link it to the Partner filter, I can edit and select a source, but no values appear in the dropdown. I expected to see a list of all area names. - When attempting to create the linked relationship between these filters, the cascading behavior doesn't work - selecting a Partner doesn't filter the available area names.
What I've Tried
- Verified that the Foreign Key relationships are correctly defined in the Metabase Admin
- Confirmed that Model 6 includes both
PartnerName
andArea_Name
columns - Checked that the data contains multiple area names for each Partner
- Tried different filter types and settings
Questions
- Is there something specific I need to configure to make cascading filters work with custom models?
- Do linked filters work differently when the columns come from joined tables in a model versus direct database tables?
- Is there a way to debug why the area name filter isn't showing any values?
- Are there any known limitations with cascading filters that might be affecting my setup?
Any guidance would be helpful as I'm trying to create an intuitive dashboard experience where users can easily filter by Partner and then by area name.