Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi Power BI Community,
I checked some answers but I cannot find the solution.
I just created a Matrix table in Power BI:
In order to get my response rate I need to calculate:
Response Rate = Completed / (Total – Bounced – Opted Out – Quarantined)
Where:
Numerator: [SurveyStatuscount-C]
Denominator: Total (SurveyStatusCount) – Bounced (SurveyStatuscount-B) – Opted Out (SurveyStatuscount-O) – Quarantined (SurveyStatusCount-Q)
I created different measeures a now I need to create the formula but I am having issues with the denominator. Any advice?
Is the Divide formula correct?
ResponseRate = DIVIDE([SurveyStatuscount-C],………………,0
Thanks
Solved! Go to Solution.
Hello @romovaro
You can create two variables.
ResponseRate =
VAR StatusC = [SurveyStatusCountC]
VAR TotalStatus = Total (SurveyStatusCount) – Bounced (SurveyStatuscount-B) – Opted Out (SurveyStatuscount-O) – Quarantined (SurveyStatusCount-Q)
RETURN
DIVIDE( StatusC, TotalStatus )
Hello @romovaro
You can create two variables.
ResponseRate =
VAR StatusC = [SurveyStatusCountC]
VAR TotalStatus = Total (SurveyStatusCount) – Bounced (SurveyStatuscount-B) – Opted Out (SurveyStatuscount-O) – Quarantined (SurveyStatusCount-Q)
RETURN
DIVIDE( StatusC, TotalStatus )
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 2 |