Data_Analyst
Data_Analyst

Reputation: 81

Clean up a dimension table

My dimension tables contains more rows than my fact table, I would like my dim table fields to show only the values in the fact table when used as a filter in the filter panel.What cleaning/modeling steps are the best to achieve this.

I also know how to write sql if that is an option for an answer.

Upvotes: 0

Views: 93

Answers (1)

Dave Pile
Dave Pile

Reputation: 5774

Rather than use a table for your dimension, use a view that has an inner join to the fact table

Upvotes: 0

Related Questions