Forum Discussion
Response Rate
- Anonymous7 years ago
Ah shoot, sorry. Force of habit! (I use variations of the formula I gave you a lot). Just remove the -1
Response Rate = DIVIDE(COUNTA(Spring18[Donors]),AVERAGE(Spring18[Number Solicited]),0)
Are the Count of Donors and Number Solicited fields measures or columns?
Try adding the below measure if measures:
=DIVIDE([Count of Donors],[Number Solicited),0)-1
If columns
=DIVIDE(SUM(Count of Donors),SUM(Number Solicited),0)-1
Thanks for the reply, I think they columns - the count of donors is a count function and number solicited not summarized.
I get this error using the measure formula:
The following syntax error occurred during parsing: Invalid token, Line 1, Offset 26, [Number Solicited),0)-1)).
And this error using the columns formula:
The syntax for 'of' is incorrect. (DAX(DIVIDE(SUM(Count of Donors),SUM(Number Solicited),0)-1)).
- Anonymous7 years agoNot applicable
I'm a little confused. Can you send a screenshot of the table(s) where the two columns are?
- pm_barnardos7 years agoFrequent Visitor
No problem, here you go:
- Anonymous7 years agoNot applicable
Update the Number Solicited column to a whole number and create the below measure:
Response Rate = DIVIDE(COUNTA(Spring18[Donors]),AVERAGE(Spring18[Number Solicited]),0)-1