Forum Discussion
Sales Conversion Rate
- Anonymous5 years ago
Hi Anonymous ,
According to your description, I create this data:
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.
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.
Hi Anonymous ,
According to your description, I create this data:
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.
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.