I have a column I would like to rank -- if the values are the same I would like them to be the same rank
I am using a multi row formula tool:
if [recordables] != [Row-1:recordables] then [Row-1:recordables rank] + 1 else [ROW-1:recordables rank] endif
My issue is that is that the tool is not accounting for zero. -- if the recordables are zero I would like the rank to start at 1, but the tool starts it at zero.
| Recordables | Rank | Desired rank |
| 0 | 0 | 1 |
| 0 | 0 | 1 |
1 | 1 | 2 |
1 | 1 | 2 |
2 | 2 | 3 |