Don't miss your chance to take exam DP-600 or DP-700 on us!
Request nowLearn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
I have a requirement that i need to divide Distinct count of ID's whose salary is <= 25000 divided by distinct count of Id's.
value=Distinct count of ID's whose salary is <= 25000/ distinct count of Id's.
value = calculate(distinctcount(rawdata[id]),rawdata[salary] <= 25000 / distinctcount(rawdata[id])) .
However, this is giving me error.
Let me know any suggestion to achive this in single formula.
Thanks!!
Solved! Go to Solution.
Hi @Anonymous
try
value =
DIVIDE(
calculate(distinctcount(rawdata[id]), rawdata[salary] <= 25000) ,
calculate(distinctcount(rawdata[id]), ALL(rawdata))
)
hi @az38 ,Thanks,
It is rounding the values like 18/21 = 0.85 but it displays 1. How can i display exact value??
Thanks!!
Hi @Anonymous
try
value =
DIVIDE(
calculate(distinctcount(rawdata[id]), rawdata[salary] <= 25000) ,
calculate(distinctcount(rawdata[id]), ALL(rawdata))
)
hi @az38 ,Thanks,
It is rounding the values like 18/21 = 0.85 but it displays 1. How can i display exact value??
Thanks!!
@Anonymous
pick your measure in the right Fields Pane then go to Measure tools ribbon and set Decimal place parameters to 2
| User | Count |
|---|---|
| 50 | |
| 40 | |
| 32 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 87 | |
| 73 | |
| 37 | |
| 28 | |
| 26 |