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

July 28 - August 9 | Final Round of the Power BI Dataviz World Championships. This is your chance. Learn more

Reply
Dave1982
Frequent Visitor

Sales Conversion Rates Based on Presentations vs Overall

Hello,

 

I am looking for help in creating conversion rates for my Sale Rep Based on the Amount of Opportunities they have and how many presentations they have made. They are tracking their information in an excel spreadsheet which I am importing into Power BI to calculate the following. I am probably making this harder than what it needs to be so any thought on making this simpler is much appreciated.

 

Within the Excel Sheet there is a required field that the sales rep have to fill out if they made the sales. It is a drop down of either “Yes” or No”

 

Within Power Bi I have created a column to capture the Yes with the following formula.

 

SalesRollup_Count  = IF('FormResponses'[SalesRollup]="Yes",1,0)

 

I have then created a measure to capture the teams closing rate

 

Closing% = Calculate ( Count ( 'FormResponses'[SalesRollup]), 'FormResponses'[SalesRollup] = "Yes") / Count ('FormResponses'[SalesRollup])

 

 

Total Leads currently is 80

Total Sold is 24

Sales Closing % 80/24 = 3

I need to get more granular with the Sales Rep that have given presentation to prospective client. I need to be able to count the Presentation Date and divide this by the sales rep that have made sales.

So I have a total of 24 clients that have given a presentation and made a sale out of a total of 35 presentations that have been made. Closing Rate is 68.6%

 

Any help is appreciated.

1 REPLY 1
Anonymous
Not applicable

Hi @Dave1982,

It sounds like you want to apply multiple aggregations to the formula calculation.
If that is the case, I'd like to suggest you add a variable with summarize function for the first aggregate, then you use iterator functions to apply the second aggregation.

Measure Totals, The Final Word 
Regards,

Xiaoxin Sheng

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

Fabric Community Sticker Design Challenge Barcelona Carousel

Fabric Community Sticker Challenge - Barcelona 2026

If you love stickers, then you will definitely want to check out our community sticker challenge, Barcelona edition!

July Power BI Update Carousel

Power BI Monthly Update - July 2026

Check out the July 2026 Power BI update to learn about new features.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors