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
Anonymous
Not applicable

% Deals made by certain individuals

Hi,

 

How do you find the percentage of 'deals' made by certain individuals as a fraction of the total deals? My attempt at DAX to get the total number generated by the individuals is:

 

Deals Originated by Team = CALCULATE(count(Query1[Closing Date]), IF(Query1[Deal Owner]  .....
 
How would I write the DAX so that I have the total number by the individuals im looking at, say Deal Owners 'AA', 'BB', 'CC', as a fraction of the total Closing Date (which is my count for total deals). Thanks!
6 REPLIES 6
Anonymous
Not applicable

[Total Deals] = COUNT( Query1[Closing Date] )

[Deals Originated by Team] =
DIVIDE(
	[Total Deals],
	CALCULATE(
		[Total Deals],
		ALL( Query1[Deal Owner] )
	)
)

... with the proviso that single-table models will make you cry one day. You should stay away from them if you want to be sure that your figures are always correct. If you want to know why, please read this https://community.powerbi.com/t5/DAX-Commands-and-Tips/Why-one-table-models-will-produce-WRONG-NUMBE...

 

 

Anonymous
Not applicable

Hi thanks for your help, how do I get the percentage for the people I am trying to filter for within Deal Owner? Deal owner includes multiple teams but need 3 people as a percentage of everyone in Deal Owner. Thanks

Hi,

A small example dataset together with expected results would be really useful here.

Regards

Anonymous
Not applicable

Hi, I can't do that I'm using a live dataset for a company, but there's about 20 names within Deal Owner, and I need the sum of 3 peoples deals: CM, BC and CB, as a percentage against the total deals, hope this helps, thanks

Anonymous
Not applicable

@Anonymous 

 

My formula gives you what you want when you slice by Deal Owner. If you select the deal owners (CM, BC and CB), you'll get their share among all the deals.

 

If this is not what you're after (but this is what I've understood), then you have to be more precise.

But surely you can create a small example using some dummy data?

Regards

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.