• 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.

Maintain numerical order of cell data in column A in column B

In column A I have numbers that will be added daily like:
4
7
9
2

In column B I want to maintain these numbers in numerical order as they are added like:
2
4
7
9

Some rows is column A will be blank and should be ignored.

What formula should I place in column B?
 
Hi,

I supposed your data starts with A2 and till A5, use the following formula:

=IFERROR(SMALL($A$2:$A$5,ROW(A1)),"")

Copy down...
adjust the range to your need.

Regards,
 
Back
Top