I am trying to rank (with a formula, no filters) some values using the values in another column as filters while excluding zeros from the ranking.
<tbody>
Value
Filter
Formula
1.3
1
{=RANK.AVG(A2,IF($B$2:$B$8=1,$B$2:$B$8),1)}
2.1
1
2.3
0
2.0
0
3.1
0
2.5
0
0.0
1
</tbody>
I...