Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I need to flip a few rows of data. For instance, right now I have
colums that look like this: 1 6 2 7 3 8 4 9 5 10 I need them to look like this: 5 10 4 9 3 8 2 7 1 6 These columns have thousands of entries in them, so if there's a function that can cover this for me it would save me a ton of time. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
If you don't have a column that's already sorted into order like your
examples are, then add a helper column with entries 1, 2, 3, etc to the end of your data. Select all your data (all the relevant rows and column). Data/ Sort/ sort by whichever column has your increasing numbers/ Sort descending. -- David Biddulph "August" wrote in message oups.com... I need to flip a few rows of data. For instance, right now I have colums that look like this: 1 6 2 7 3 8 4 9 5 10 I need them to look like this: 5 10 4 9 3 8 2 7 1 6 These columns have thousands of entries in them, so if there's a function that can cover this for me it would save me a ton of time. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Data Sort Sort by: select Descending
"August" wrote: I need to flip a few rows of data. For instance, right now I have colums that look like this: 1 6 2 7 3 8 4 9 5 10 I need them to look like this: 5 10 4 9 3 8 2 7 1 6 These columns have thousands of entries in them, so if there's a function that can cover this for me it would save me a ton of time. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
One way:
=INDEX(A$1:A$5,COUNTA(A$1:A$5)-(ROWS($1:1)-1)) copy across then down. Biff "August" wrote in message oups.com... I need to flip a few rows of data. For instance, right now I have colums that look like this: 1 6 2 7 3 8 4 9 5 10 I need them to look like this: 5 10 4 9 3 8 2 7 1 6 These columns have thousands of entries in them, so if there's a function that can cover this for me it would save me a ton of time. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
sorting 2 colums of numbers and incremening them down | Excel Discussion (Misc queries) | |||
Inputting data to one worksheet for it effect another | Excel Discussion (Misc queries) | |||
ranking query | Excel Discussion (Misc queries) | |||
Sort pages? | Excel Discussion (Misc queries) | |||
Pulling data from 1 sheet to another | Excel Worksheet Functions |