Re-ordering question

roscoe

Well-known Member
Joined
Jun 4, 2002
Messages
1,062
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
I have data that looks like this:
Code:
a ... x
b ... y
c ... z

Where values a-c are in column B and x-z are in column T

I need to copy them to another sheet that looks like this:
Code:
a
b
c
z
y
x
(Notice the reversing of the order of the Column T values)

The number of rows used in each column will always equal each other, but that number is arbitrary. I'm looking for a formula construct that will be copy the values from column B, know when it is exhausted, then start back up from the bottom of Column T.

Ideas?

Thanks!

I have no idea of even how
 

Excel Facts

When they said...
When they said you are going to "Excel at life", they meant you "will be doing Excel your whole life".
How about
=IF(ROW(A1)<=COUNTA(B:B), INDEX(B:B,ROW(A11),1), INDEX(T:T,2*COUNTA(B:B)-ROW(A1)+1,1))
 
Upvote 0
I'll give that a try at work tomorrow. Never would have come up with anything that elegant...
 
Upvote 0

Forum statistics

Threads
1,224,599
Messages
6,179,827
Members
452,946
Latest member
JoseDavid

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top