This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hi All ,
If I have below table
and i need to use power BI to count the Sub product for the product , but the products are dynamic and the subproducts are dynmaic as well
product ProductSub
| A | TSa001 |
| B | TSa002 |
| C | TSa003 |
| D | TSa004 |
| A | TSa005 |
| B | TSa006 |
| C | TSa007 |
| D | TSa008 |
| A | TSa009 |
| B | TSa010 |
| C | TSa011 |
| AD | TSa012 |
Solved! Go to Solution.
I also found this Solution
CountSUBprodut = CALCULATE(COUNT('X'[Subproduct]),ALLEXCEPT('x','x'[Prodct]))
thank you for your response😊
I also found this Solution
CountSUBprodut = CALCULATE(COUNT('X'[Subproduct]),ALLEXCEPT('x','x'[Prodct]))
thank you for your response😊
Hi @NadaFathy193 - Create one new table productlist that shows only unique records.
to get the unique records :
ProductList = DISTINCT('YourTable'[Product])
Create a measure that calculates the count of sub-products for each product.
SubProductCount =
CALCULATE (
COUNTROWS('YourTable'),
FILTER (
'YourTable',
'YourTable'[Product] = SELECTEDVALUE('ProductList'[Product])
)
)
Now display the product names from the "ProductList" table and use the "SubProductCount" measure to show the count of sub-products for each product which dynamically counts the number from sub product group to each product
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 26 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 37 | |
| 33 | |
| 23 | |
| 23 |