Forum Discussion
Filter two separate data sets using one filter
- 6 years ago
jack3 , Do you have common tables for those, if not create common tables.
The first one should work ideally, But in the new version, it is not, so try one of the three. It gives circular dependency error
new table like
product = distinct(union(all(Dataset1[Product]),all(Dataset2[Product])))
product =distinct(union(distinct(Dataset1[Product]),distinct(Dataset2[Product])))
product = summarize(union(distinct(Dataset1[Product]),distinct(Dataset2[Product])),[Product])Create for others too and join and the analyze with common dimesion
HI jack3,
If your dataset relationship is based on multiple fields, you can also take a look at the following blog to know how to build a relationship between multiple columns:
Relationship in Power BI with Multiple Columns
Regards,
Xiaoxin Sheng