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

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

Reply
Anonymous
Not applicable

How to display all profiles attached to a product when it is selected (with DAX)

Hello team,

I am looking for a DAX formula that allows me, when a product is selected, to return the number of profiles working or assigned to this product.

Thank you in advance for your help.
Bill

 

UsineProduitProfilData
BOULOGNEVeloCloud Architect18
BOULOGNEVeloDevSecOps  270,9
BOULOGNECarEngineering 27
BOULOGNEBikeLead Dev72
BOULOGNECarProduct Owner57
BOULOGNEVéloManager9
BOULOGNEBikeUX/UI72
BOULOGNEmotoExpert 54
1 ACCEPTED SOLUTION
Anonymous
Not applicable

The aim is to provide statistics on the number of engineers, technicians, experts, etc. assigned to each product manufactured.

 

My table is indeed clear, but what if you had a thousand products? The display won't be pretty on a graph, which is why I want to use a DAX.

 

I tested your formula and it didn't work. However, I modified @amitchandak's formula and it worked:

Count of Profiles = CALCULATE(DISTINCTCOUNT('Planned load'[Profile]),ALLSELECTED('Planned load'[Product]))

Thanks for your feedback.

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

The aim is to provide statistics on the number of engineers, technicians, experts, etc. assigned to each product manufactured.

 

My table is indeed clear, but what if you had a thousand products? The display won't be pretty on a graph, which is why I want to use a DAX.

 

I tested your formula and it didn't work. However, I modified @amitchandak's formula and it worked:

Count of Profiles = CALCULATE(DISTINCTCOUNT('Planned load'[Profile]),ALLSELECTED('Planned load'[Product]))

Thanks for your feedback.

amitchandak
Super User
Super User

@Anonymous , I think simple measure should do

DISTINCTCOUNT(ProfilesData[Profil])

Plot with Profil

 

or try

 

Count of Profiles =
CALCULATE(
DISTINCTCOUNT(ProfilesData[Profil]),
ALLSELECTED(ProfilesData)
)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube
Anonymous
Not applicable

Hello @amitchandak , fFirst of all, thank you for your feedback.
However, my table call "Planned load". It has 5 columns:
1. Plant (Usine) ; 2. Product (Produit) ; 3. Profile (Profil) ; 4. Value (data); 5. Date

I've tested several formulas but they don't return what I want, for example :
Number of profils = COUNTROWS(FILTER('Planned load', 'Planned load'[Profile] = SELECTEDVALUE('Planned load[Products])))

or
Number of profils = CALCULATE(COUNT('Planned load'[Profile]), CROSSFILTER ('Planned load'[Products]))

 

Thank you in advance for your feedback

Bill252

Hello @Anonymous,

I am not sure to understand why you want this count since your data are already well shaped so you can display it in any visual.

 

However, if you still need it for something else maybe you can try :

 

 

CALCULATE(COUNTROWS('Planned Load'),FILTER('Planned Load','Planned Load'[Produit]))

Regards

Helpful resources

Announcements
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