Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreShape the future of the Fabric Community! Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions. Take survey.
Hello all ,
I need your help please
I have two tables - orders and products category
products culumns category , sub_category , product_id ( product_id can be in many sub_categories)
orders culumns - cust_id , order_date ,product_id , category , sub_category
how can I create a measure that showes only orders of products that have more than one sub_category ?
no ...i need it to create a relation between the tables so on could filter the other
You can't create a relationship between 2 tables on many columns. Secondly, slicing Orders by category and sub_category should be carried out via Products where these columns (should) reside. Please note that slicing should NEVER be done directly on a fact table, only via dimensions. If you don't follow the rules, you'll be sorry rather sooner than later. Even better, you'll be creating complex and potentially slow DAX which at times will return wrong results without you even realizing this.
Consider yourself warned (for your own good).
Best
D
The filter is by the category (pk)
anyone knowes how to create this DAX ?
Something along the lines of:
Measure =
VAR __Products =
FILTER(
GROUPBY(
'products culumns',
[product_id],
"Count",COUNTX(CURRENTGROUP(),[sub_category])
),
[Count]>1
)
RETURN
<some calculation where FILTER('orders culumns',[product_id] IN __Products) >
User | Count |
---|---|
25 | |
21 | |
20 | |
13 | |
13 |
User | Count |
---|---|
40 | |
28 | |
27 | |
23 | |
21 |