Convert One Column in Two Columns

ionelz

Board Regular
Joined
Jan 14, 2018
Messages
248
Office Version
  1. 365
Platform
  1. Windows
Hi,
I have Range B2:B20
I want data from B2:B20 to go in C2:C10 and D2:120
This way :
- first row, third row, fifth row .....in C
- second rows, forth row ....in D
Result of B2:B20

C D
B2 B3
B4 B5
B6 B7
 

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.
as you have 365 - you could use filter and ISEVEN , ISODD
so

Book3
ABCDE
1
2B-2B-2B-3
3B-3B-4B-5
4B-4B-6B-7
5B-5B-8B-9
6B-6B-10B-11
7B-7B-12B-13
8B-8B-14B-15
9B-9B-16B-17
10B-10B-18B-19
11B-11B-20
12B-12
13B-13
14B-14
15B-15
16B-16
17B-17
18B-18
19B-19
20B-20
21
Sheet1
Cell Formulas
RangeFormula
C2:C11C2=FILTER(B2:B20,ISEVEN(ROW(B2:B20)))
D2:D10D2=FILTER(B2:B20,ISODD(ROW(B2:B20)))
Dynamic array formulas.
 
Upvote 0
Solution

Forum statistics

Threads
1,215,444
Messages
6,124,892
Members
449,194
Latest member
JayEggleton

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