Forum Discussion

yasbos's avatar
yasbos
Resolver II
2 years ago
Solved

Ranking a table variable

Hi. I have a table variable created using calculatetable in a dax measure. I need to rank this table based on column [Value]. I can do that with Rankx. However, it seemst that Rankx doesn't take the ...
  • ExcelMonke's avatar
    2 years ago

    Consider wrapping your measure results in a round function, with multiple decimal points (e.g. ROUND([Value],3), and RANKX from there. This was you can determine if it truly is a rounding issue (i.e. Rankx not picking up the decimals)