Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
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) >
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
33 | |
15 | |
14 | |
12 | |
9 |