The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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 |
---|---|
69 | |
68 | |
65 | |
54 | |
28 |
User | Count |
---|---|
112 | |
82 | |
65 | |
48 | |
43 |