March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hey there,
I'm very new to Power BI, so I'm sure this is simple however I can't work it out. I need to make a simple response rate calculation column whereby I'm dividing the count of donors by the number solicited for each segment and display as a %, any help appreciated, thanks!
Solved! Go to Solution.
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)).
I'm a little confused. Can you send a screenshot of the table(s) where the two columns are?
No problem, here you go:
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
Thanks for you help with this! The formula gives a result, although it still doesn't look right - see below.
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)
hello, may I know why you used average?
That works! Thank you so much.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
124 | |
87 | |
85 | |
70 | |
51 |
User | Count |
---|---|
205 | |
153 | |
97 | |
79 | |
69 |