For instance, i can use this array formula with the SUM() function.
But, if i want to use the RANK() function, i analogously try:
This only gives #VALUE. As the function RANK requires a ref.
So, is there a way i can accomplish the goal with the RANK function, of filtering the values in L2:L1037, to reduce them in number, and then get the ranks based on that filtered array? Somehow convert the array described by
to a ref, or something suitable to the RANK function?
Thank you.!
Excel Formula:
=SUM(IF(N2:N1037="Relief",L2:L1037))
But, if i want to use the RANK() function, i analogously try:
Excel Formula:
=RANK(L2,IF(N2:N1037="Relief",L2:L1037))
This only gives #VALUE. As the function RANK requires a ref.
So, is there a way i can accomplish the goal with the RANK function, of filtering the values in L2:L1037, to reduce them in number, and then get the ranks based on that filtered array? Somehow convert the array described by
Excel Formula:
IF(N2:N1037="Relief",L2:L1037)
Thank you.!