How to combine multiple rows of data into one row and then add text in between from another data set using an arrayformula?

Viewed 23
1 Answers

try:

={FILTER(A3:A, A3:A<>""), FILTER(D3:D, D3:D<>"")}

enter image description here

Related