Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
NadaFathy193
Frequent Visitor

Count Dynamic Value

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

ATSa001
BTSa002
CTSa003
DTSa004
ATSa005
BTSa006
CTSa007
DTSa008
ATSa009
BTSa010
CTSa011
ADTSa012
1 ACCEPTED SOLUTION
NadaFathy193
Frequent Visitor

I also found this Solution 
CountSUBprodut = CALCULATE(COUNT('X'[Subproduct]),ALLEXCEPT('x','x'[Prodct]))

 

thank you for your response😊

View solution in original post

2 REPLIES 2
NadaFathy193
Frequent Visitor

I also found this Solution 
CountSUBprodut = CALCULATE(COUNT('X'[Subproduct]),ALLEXCEPT('x','x'[Prodct]))

 

thank you for your response😊

rajendraongole1
Super User
Super User

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!!

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!





Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors