Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. 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
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
97 | |
96 | |
58 | |
45 | |
42 |