Answer the question
In order to leave comments, you need to log in
How to move data from a column?
In column A in lines 2, 14, 26, etc. there is data that needs to be transferred to column C lines 2,3,4..., how to do it?
Ideally, it would be if data from the cell indicated in B2 would be transferred to cell C2 and the data would turn from ADBE [NASDQ] to ADBE and NASDQ in neighboring cells
Answer the question
In order to leave comments, you need to log in
Selects non-empty values
=filter(a:a;a:a<>"")
And the resulting value can be parsed with REGEXTRACT ()
Or use something like this:
function REGEXTRACTALL(rows, regExp, flags) {
flags = flags || "gmi";
return rows
.map(r=>r[0])
.map(el=>(el+"").match(new RegExp(regExp, flags)));
}
=REGEXTRACTALL(filter(a:a;a:a<>""), "([A-Za-z]+)", "gmi")
Maybe this is for you
=ARRAYFORMULA(IFERROR(
SPLIT(
VLOOKUP(
B:B,
{ADDRESS(ROW(A:A),COLUMN(A:A),4),A:A},
2,
0
),
"[\[\]]")
))
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question