I want to Combine two columns that's are on a column "B" and column "C" and want to make them to be one column like on column "E" but in this case I want to make them, replace both of them after Combined them as one and then replace they're position to be with an even and odd position each others. Is it possible to be done ? Look how I explaining this all with the table I've created on down below this and see how I expected that and please feel free also to edit into my sample g.shee doc what I've atteched on down below this.
THIS HERE YOU CAN EDIT TO MY SAMPLE G.SHEET TO SOLVE THIS MY QUEEZ. THANKS IN ADVANCE!
A | B | C | D | E | |
---|---|---|---|---|---|
1 | |||||
2 | N U M B | I D - N A M E | I D - C O D E | H E L P E R | E X P E C T O U T P U T |
3 | |||||
4 | 5 | I7AF9 | J3573 | 2 | I7AF9 |
5 | IYR | 1 | J3573 | ||
6 | F498S | 3 | IYR | ||
7 | F498S | ||||
8 | |||||
9 | 4 | H3D90 | C684J | 1 | H3D90 |
10 | J58 | 1 | C684J | ||
11 | J58 | ||||
12 | 3 | H684K | JF585 | 2 | H684K |
13 | JF585 | ||||
14 | |||||
15 | 2 | FJSR | 4684 | 3 | FJSR |
16 | 4684 | ||||
17 | 1 | JSR | 834 | 1 | JSR |
18 | 49 | 2 | 834 | ||
19 | 9835 | 1 | 49 | ||
20 | 9835 |
you can do this with helper column like:
=INDEX(QUERY(FLATTEN({IF(A4:A<>""; ""; )\ B4:C}); "where Col1 <>''"; ))