Home > Enterprise >  How to use Excel RANK function that references range of cells that are formulated
How to use Excel RANK function that references range of cells that are formulated

Time:10-14

I'm trying to RANK range of cells where values are from formula.
As you can see I'm getting #N/A:

enter image description here When I click "Show Calculation Steps" on the error, it shows: enter image description here

Column C is simple subtraction formulas: enter image description here

How can I reference range that are calculated from formula when using RANK function??

CodePudding user response:

That's because IMSUB returns text not number...

so in C2 cell... use this formula;

=IMSUB(A2,B2)*1

Your RANK should do the job...

  • Related