I have a formula in excel which evaluates a range of cells then provides a ranking without skipping numbers (1, 2, 3...etc.) Additionally, duplicate values are assigned the same rank, I need this.
I've tried playing around with the RANKEQ formula but some rank numbers are being skipped.
Excel Formula:
=SUMPRODUCT(($R$5:$R$1615<$R5)/COUNTIF($R$5:$R$1615,$R$5:$R$1615))+1
Here's the formula I'm using which works, except for skipping rank numbers...
Smartsheet Formula:
=RANKEQ([AMYR]@row, [AMYR]:[AMYR]) + COUNTIF([AMYR]@row:[AMYR]@row, RANKEQ(@cell, [AMYR]:[AMYR]) = RANKEQ([AMYR]@row, [AMYR]:[AMYR])) - 1
Here's an example of what I'm seeing, sorted highest value:
Any suggestions would be greatly appreciated. Thanks!