Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
Hi @appsac1
You can try using CALCULATE function along with FILTER function. Here's an example of how you can modify your formula to achieve the desired result:
SQL Flag = IF('Lead Tracker'[Lead type] = "SQL", 1, 0)
Create a measure to count the SQL leads based on the filtered context:
SQL Count = CALCULATE(SUM('Lead Tracker'[SQL Flag]))
Create another measure to count all leads based on the filtered context:
Total Leads Count = CALCULATE(SUM('Lead Tracker'[Count rows]))
Finally, create a measure to calculate the conversion rate:
Conversion Rate = DIVIDE([SQL Count], [Total Leads Count])
Thank you
Hope this will help you.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 9 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |