RANK.EQ is a DAX function that returns the rank of a number in a column of numbers, assigning the top rank in case of ties.
Syntax
RANK.EQ(
Value,
ColumnName,
Order
)
Argument | Properties | Description |
---|---|---|
Value | The value to be ranked. | |
ColumnName | A column in which the value will be ranked. | |
Order | Optional | The order to be applied. 0/FALSE/DESC – descending; 1/TRUE/ASC – ascending. |