Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 1
Default how do you flip a column containing different text in each cell

column contains from top to bottom: A,B,C,D,E
and i want a column conatining after flip: E,D,C,B,A
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 4
Default how do you flip a column containing different text in each cell

Data - Sort -Descending?
"cybermix" wrote in message
...
column contains from top to bottom: A,B,C,D,E
and i want a column conatining after flip: E,D,C,B,A



  #3   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2
Default how do you flip a column containing different text in each cell

Are the entries always in ascending alphabetical order as in the example? If
so, you can just select the column and Sort it in descending order. I doubt
if they are or you wouldn't have had to ask how to reverse them. If they
aren't, you can enter the following formula in column B1 and then copy it
down.

= OFFSET($A$1,MATCH("*",A:A,-1)-ROW(B1),0)

The MATCH("*",A:A,-1) expression returns the row number of the last
non-blank cell in column A. (Thanks to
http://www.mrexcel.com/forum/showthread.php?t=15062 for this trick.).

This assumes the values start in A1. You'll need to modify the formula if
they don't,


  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,203
Default how do you flip a column containing different text in each cell

Well, if your column is sorted ascending alphabetically as in your example,
easiest thing to do would be to copy it to another copy and sort that column
in descending order.

But I suspect it's not that easy, so assuming your initial column is column
A and entries begin in row 1 and continue down the column unbroken (no empty
cells), then put this into row 1 of the other column:
=OFFSET($A$1,(COUNTA(A:A)-ROW()),0)
and fill it down to the end of the list in column A and see if that doesn't
do the trick.



"cybermix" wrote:

column contains from top to bottom: A,B,C,D,E
and i want a column conatining after flip: E,D,C,B,A

  #5   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 15,768
Default how do you flip a column containing different text in each cell

Try this...

Data in the range A1:A5

Enter this formula in B1 and copy down to B5:

=INDEX(A$1:A$5,ROWS(A1:A$5))

--
Biff
Microsoft Excel MVP


"cybermix" wrote in message
...
column contains from top to bottom: A,B,C,D,E
and i want a column conatining after flip: E,D,C,B,A



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
flip text 180 Degrees Karla Excel Discussion (Misc queries) 9 April 18th 07 09:05 PM
how to flip a column upside down winglj Excel Discussion (Misc queries) 2 March 24th 06 06:09 PM
How to flip the rows to column winglj Excel Discussion (Misc queries) 1 July 12th 05 03:28 PM
Flip text box 180 degrees Mikey Excel Discussion (Misc queries) 5 February 14th 05 11:58 PM
is there anyway to flip a column in excel? weiss2185 Excel Worksheet Functions 2 January 27th 05 06:37 PM


All times are GMT +1. The time now is 06:21 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"