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...
jthomson
8 years agoSolution Sage
You're solely interested in whether there's been a reply or not? Try grouping the rows by customer in Power Query and summing the score column. If there's no replies, then this should sum to null, so you can get the total number of customers by countrows on your new table, and then the number of customers on that have replied by doing the same, but wrapping that in Calculate with the summed up response row not equal to blank.
Not sure whether you can get a response of zero which might break this response, if so you may need to put in a helper column that looks at whether the initial score column is blank and returning null if it is blank and 1 otherwise