Forum Discussion
Having trouble calculating % Success Rate
- 9 years ago
shelbsassy change the / to a comma! This shoud fix it!
EDIT
I meant when I tried Success Rate = DIVIDE(Sheet1[Sum Success]/Sheet1[Sum Interventions],0) I get nothing. (I had them backwards) Thanks!
- Sean9 years ago
Community Champion
shelbsassy change the / to a comma! This shoud fix it!
- v-micsh-msft9 years ago
Microsoft Employee
Hi shellbsassy,
What is your current situation?
Divide () function is the same as "/" symbol. If you use "/", then there is no need to use DIVIDE ( ) function.
DIVIDE function reference: DIVIDE Function (DAX)
Format should be: DIVIDE(<numerator>, <denominator> [,<alternateresult>])
So the right way to use the DIVIDE function is:
DIVIDE(Sheet1[Sum Success],
Sheet1[Sum Interventions],
0),
as Sean suggested.
If any further help needed, please post back.
Regards
- shelbsassy9 years ago
Resolver I
The comment worked perfectly! Thank you both for your help!