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.
Hi,
I am trying to get the next bottom ranked value that is not zero. This is what I currently have written to return the first ranked lowest value.
Is there a way to write something that says
IF result = 0 then
Maybe this to return positives only into the measure :
Least COUNT =
VAR _rank = CALCULATE(
Audit[Sum Audits and Entries],
FILTER(
System_Users,
RANKX(
System_Users,
Audit[Sum Audits and Entries],,
ASC,
DENSE
) = 1
)
) + 0
VAR Result = If ( _rank > 0 , _rank )
Return
Result
Good luck !
Great thought. Unfortunately it just removes the results with zero.
Visualization Filters
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
23 | |
10 | |
10 | |
9 | |
7 |