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
nessanosullivan
New Member

Sales Conversion

Hi all,

 

I'm new to the world of "Power" but picking it up fast from all your great feedback. I need your guidance on a wall I've hit. I've been pulling out my hair trying to figure this one out. 

 

I want to calculate sales conversion based on what we win in a quarter and divide by the number of opportunities we created in the previous quarter. 

 

This is different to win rate which is the number of opptys won out of total with a close date in the quarter. 

 

 # Opptys Won in Qtr (Based on close date) / # Opptys created in the previous quarter to the close date. The picture better explains what I am trying to achieve. this is it in Excel. 

 

I've tried some many different variations of logic and formula but I don't seem to be able to get the right number

 

 

Would really appreciate any guidance...Sales_Conv.png

 

 

 

 

 

2 REPLIES 2
v-qiuyu-msft
Community Support
Community Support

Hi @nessanosullivan,

 

Assume 2017 Q1 Created Date, 2017 Q2 Close Date, 2017 Q2 Won are three columns, then you can create the measure below: 

 

Measure= var CW Q2=Calculate(count([2017 Q2 Won]),Filter(All('Table'),[2017 Q2 Won]="TRUE"))

                 var Created Q1=Calculate(count([2017 Q1 Created Date]),All('Table'))

return 

Divide(CW Q2,Created Q1)

 

If this doesn't work, please share the pbix file with some dummy data. Do mask sensitive data before uploading.

 

Best Regards,
Qiuyun Yu

 

Community Support Team _ Qiuyun Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Greg_Deckler
Community Champion
Community Champion

Is that a good representation of sample data? Do you have a calendar table that will tell you what quarter dates are in? In theory, you could create some measures to get you there. Psuedo code:

 

Q1_Opportunities = CALCULATE(COUNT([column]),[CreatedQuarter]="Q1")

Q2_Wins = CALCULATE(COUNT([column]),[ClosedQuarter]="Q2" && [Won]=TRUE)

Ratio = Q2_Wins / Q1_Opportunities

 

 



Follow on LinkedIn
@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
DAX For Humans

DAX is easy, CALCULATE makes DAX hard...

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.