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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors