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

We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now

Reply
Anonymous
Not applicable

Sales Conversion Rate

Hi,

I want to display sales conversion rate on a column chart. Let's say 100 leads got created in a month and 25 opportunities were marked as WON in the same month, then the rate is 25/100 or 25%. I need this rate to be on a chart over a period of 2 years for each month i.e. no of leads created in a month and no of opportunities marked as WON in the same month. I am not getting the desired result on the chart.

 

Please help.

 

Thanks,

Vaibhav

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @Anonymous  ,

According to your description, I create this data:

v-yangliu-msft_0-1613971135672.png

Definition rules:

When it's A, it's leads

Here are the steps you can follow:

1. Create calculated column.

Month = MONTH('Table'[date])

2. Create measure.

Measure =
var _A=CALCULATE(COUNT('Table'[leads]),FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])&&'Table'[leads]="A"))
var _mark=CALCULATE(COUNT('Table'[opportunities]),FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])&&'Table'[opportunities]=MAX('Table'[opportunities])&&'Table'[leads]="A"))
return
DIVIDE(_mark,_A)

3. Result.

v-yangliu-msft_1-1613971135677.png

You can downloaded PBIX file from here.

If my answer doesn't meet your expectation ,can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

4 REPLIES 4
Anonymous
Not applicable

Hi  @Anonymous  ,

According to your description, I create this data:

v-yangliu-msft_0-1613971135672.png

Definition rules:

When it's A, it's leads

Here are the steps you can follow:

1. Create calculated column.

Month = MONTH('Table'[date])

2. Create measure.

Measure =
var _A=CALCULATE(COUNT('Table'[leads]),FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])&&'Table'[leads]="A"))
var _mark=CALCULATE(COUNT('Table'[opportunities]),FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])&&'Table'[opportunities]=MAX('Table'[opportunities])&&'Table'[leads]="A"))
return
DIVIDE(_mark,_A)

3. Result.

v-yangliu-msft_1-1613971135677.png

You can downloaded PBIX file from here.

If my answer doesn't meet your expectation ,can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi  @Anonymous ,

According to your description, I create this data:

v-yangliu-msft_0-1613711458192.png

Here are the steps you can follow:

1. Create calculated column.

Month = MONTH('Table'[date])

2. Create measure.

Measure =
var _all=CALCULATE(COUNT('Table'[marked]),FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])))
var _won=CALCULATE(COUNT('Table'[marked]),FILTER(ALL('Table'),'Table'[Month]=MAX('Table'[Month])&&'Table'[marked]=MAX('Table'[marked])))
return
DIVIDE(_won,_all)

3. Result.

v-yangliu-msft_1-1613711458207.jpeg

You can downloaded PBIX file from here.

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Anonymous
Not applicable

Hi Liu,

Thanks for your response. I think you have considered only the opportunities. In our scenario, there are 2 entities: lead and opportunity.

 

I want to calculate the following and plot on the chart:

Total no of opportunities WON in a month/Total no of leads created in the same month

 

Thanks,

Vaibhav

amitchandak
Super User
Super User

@Anonymous , Need some data to suggest.

Do you have a flag in the same row where opportunity is created?

 

Are there two dates? If use you need date table.

 

Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.

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

Helpful resources

Announcements
New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

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.

Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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