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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
Anonymous
Not applicable

KPI - Percentage Deals Made by Three Individuals

Hi,

 

I have 2 fields named Total Deals and Deal Owner, whereby total deals shows the deals made by an individual each month (using Closing Date as the time measure) and Deal Owner is the names of individuals. 

 

I need to find the percentage of total deals made by 3 individuals (Initials BC, CB and CM) as a percentage of all deals made. I.e. In May, the three individuals made 6 deals and there were 24 deals in total, so I would need '25%' to show in the KPI if i was looking at May.

 

If this helps:

I have used the DAX:

Deals Contribution p.c.m = DIVIDE([Total Deals], CALCULATE([Total Deals], ALL(Query1[Deal Owner])))
To get the percentage of each individual of deals made per month, but I now need the sum of the three im looking at within the KPI 

 

I need this as a percentage for previous calender month and YTD, please help! Thanks

2 REPLIES 2
Aditya_Meshram
Solution Supplier
Solution Supplier

Hi @Anonymous ,

for previous month calculation you can use

Previous Month Deals Contribution p.c.m  = 
CALCULATE([Deals Contribution p.c.m],
PREVIOUSMONTH('Calendar'[Date])
)

 

For YTD Calculation you can use 

YTD Deals Contribution p.c.m =
TOTALYTD([Deals Contribution p.c.m],
'Calendar'[Date])

 

Regards,

Aditya

Anonymous
Not applicable

Hi, thanks for your help. I managed to get last month by doing

 
Total Deals by Team of 3=
CALCULATE(
    [Total Deals],
    'Query1'[Deal Owner]
        IN { "BC", "CB", "CM" } )
 
Then dividing 'Total Deals by Team of 3' by 'Total Deals', and filtered Closing Date for last month.
 
How do I get YTD up to today? I'm using a live dataset and don't have 'Calendar'(Date), my trend axis is Closing Date. Some deals have Closing Date in the future so I need to filter this out as I cannot use the Relative Date filter as it includes this entire year. Hope this is clear, thank you

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

Find out what's new and trending in the Fabric community.