Reverse Time Series Order

R

russianblue

How do I reverse the order of time series data from the current value being
first and the last value being first with all in between similarly changed?
 
M

Max

Let's say you have 10 data values in A2:A11
You could place in say, B2:
=INDEX($A$2:$A$11,11-ROWS($1:1))
and copy B2 down to B11 to reverse it.
Adapt to suit.
 
Top