I have a list of 30 values. Some are negative and some positive. Leaving them where they are, I wish to extract and sort them into two separate columns on a different sheet. What's a simple way to do this?
Paul
If Sheet1 column A houses your list then you can use following to generate negative list. =IF(SMALL(Sheet1!A:A,ROWS($A$1:A1))<0,SMALL(Sheet1!A:A,ROWS($A$1:A1)),"")
Positive list =IF(LARGE(Sheet1!A:A,ROWS($A$1:A1))>0,LARGE(Sheet1!A:A,ROWS($A$1:A1)),"")
Drag the formulas down until you get blanks and some more if numbers are supposed increase in future.
If Sheet1 column A houses your list then you can use following to generate negative list. =IF(SMALL(Sheet1!A:A,ROWS($A$1:A1))<0,SMALL(Sheet1!A:A,ROWS($A$1:A1)),"")
Positive list =IF(LARGE(Sheet1!A:A,ROWS($A$1:A1))>0,LARGE(Sheet1!A:A,ROWS($A$1:A1)),"")
Drag the formulas down until you get blanks and some more if numbers are supposed increase in future.
Thanks Khalid. As this list will be used by outside users, I cannot assume they have any skills in Excel. The formulas LARGE and SMALL will work better for my user group.
Paul