Forum Discussion
Ratio
Hi H_Kar ,
Assuming your data looks like this:
You can write the following measure to calculate the ratio:
Ratio =
VAR finished = CALCULATE(COUNTROWS('Table'),'Table'[status]="Finished")
VAR other = CALCULATE(COUNTROWS('Table'),'Table'[status] IN {"Inactive","Cancelled","Active","Completed"})
RETURN
DIVIDE(finished,other,0)
Here I assumed that you want to calculate finished to all other statuses. If you want to calculate Active minus inactive minus completed minus calcelled, then you will just need to create multiple variables similar to the "finished" variable and then write the desired calculation in the return statement.
Let me know if you have any questions!
Hi dk_dk
First of all, really appreciate you helping out.
I've new measure and inserted the code you wrote, now I have it on my data (on the far right side) as "ratio1".
My objective is to visualise it now - on the value I have "count of the status". Where does "ratio 1" go. I've given it several attempts however I unfortunately failed.
here is a screenshot of the error message when i try to put it under "values"