View Single Post
  #5   Report Post  
RagDyer
 
Posts: n/a
Default

Actually, didn't need that first Row() function:

=INDEX($A$1:$A$100,100-(ROW()-1))

--
Regards,

RD
--------------------------------------------------------------------
Please keep all correspondence within the Group, so all may benefit!
-------------------------------------------------------------------

"RagDyer" wrote in message
...
Another formula approach which is *not* dynamic.
But if you know the size of your list, it's short and sweet!<g

With data starting in A1, try this in B1, and copy down to the end:

=INDEX($A$1:$A$100,ROW($A$100)-(ROW()-1))
--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================

"Max" wrote in message
...
Assume source data is in col A, in row1 down
Fill sequential numbers; 1,2,3,... in B1 down
Select cols A & B, do a Data Sort by col B descending

or one play if you need it dynamic ..
put in B1: =ROWS($A$1:A1)
put in C1:


=IF(INDEX(A:A,MATCH(LARGE(B:B,ROWS($A$1:A1)),B:B,0 ))=0,"",INDEX(A:A,MATCH(LA
RGE(B:B,ROWS($A$1:A1)),B:B,0)))
Select B1:C1, fill down until the last row of data in col A
--
Rgds
Max
xl 97
---
GMT+8, 1° 22' N 103° 45' E
xdemechanik <atyahoo<dotcom
----
"Ken Hardman" <Ken wrote in message
...
?

How do I reverse the order (sequence) of a column of data in Excel