• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

LARGE function: How to create with nested function?

Smitty15

New Member
I would like to sort a column based on numberical values, but then further sort them based on an asigned unique number from another column. How can I write this into a LARGE function equation?
 
Assuming you have values in A1:A10 and unique numbers in B1:B10, you can try this approach:


=large(($a$1:$a$10)+($b$1:$b$10)/100,1) gives you 1st number in sorted order.


Assumptions:


b1:b10 have numbers <100, A1:a10 have whole numbers, no fractions.
 
Back
Top