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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Emilija
Regular Visitor

DAX help with calculating response rate for sorted table

I need assistance to calculate the response rate per person, based on test number, for the following table

Test Number

Name

Device

Response

Test 1

Josh

Mobile

No response

Test 1

Josh

Home

Yes

Test 1

Mike

Mobile

No response

Test 1

Mike

Home

No response

Test 2

Josh

Mobile

Yes

Test 2

Josh

Home

/

Test 2

Mike

Mobile

Yes

Test 2

Mike

Home

/

Test 3

Josh

Mobile

Yes

Test 3

Josh

Home

/

Test 3

Mike

Mobile

No response

Test 3

Mike

Home

Yes

If the person does not pick up their first device, the second device is automatically called. If they do pick up the first

device then the second device is not called(hence "/" symbol).

 

For instance for "test 1" since josh replied on his home phone his overall "pick" up response is yes. Thus his total response rate for all three tests is (3/3) 100%. Mikes response rate is (2/3)66.7%

1 ACCEPTED SOLUTION
Anonymous
Not applicable

[Pick Up Response Rate] =
var __numberOfYeses =
	CALCULATE(
		COUNTROWS( T ),
		T[Response] = "Yes"
	)
var __numberOfTests =
	DISTINCTCOUNT( T[Test Number] )
var __ratio =
	DIVIDE( __numberOfYeses, __numberOfTests )
return
	__ratio

Best

Darek

View solution in original post

1 REPLY 1
Anonymous
Not applicable

[Pick Up Response Rate] =
var __numberOfYeses =
	CALCULATE(
		COUNTROWS( T ),
		T[Response] = "Yes"
	)
var __numberOfTests =
	DISTINCTCOUNT( T[Test Number] )
var __ratio =
	DIVIDE( __numberOfYeses, __numberOfTests )
return
	__ratio

Best

Darek

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.