Forum Discussion
PaulCo
8 years agoHelper II
Survey Response Rate
I'm pulling survey data from SFDC where a table diplays a survey score if a response has been received from a customer. I want to create a measure of the percentage of customers that have respon...
Vvelarde
8 years agoCommunity Champion
Hi, try with this measure
Response Rate =
DIVIDE (
CALCULATE (
DISTINCTCOUNT ( Table1[Customer] ),
FILTER ( Table1, Table1[Score ] <> BLANK () )
),
DISTINCTCOUNT ( Table1[Customer] )
)Regards
Victor
Lima - Peru
- PaulCo8 years agoHelper II
Perfect, just what I needed, Thanks!