Im trying to use array formula to list multiple "rows" without the blank cells not from another area in the sheet.
=ArrayFormula(IFERROR(FILTER(GE2:HQ2,LEN(GE2:HQ2)),""))
Also tried
=ArrayFormula(IFERROR(FILTER(GE2:HQ,LEN(GE2:HQ)),""))
Neither returns an array effect. Also tried dragging down the formula to expand the whole sheet. Which works, until a form is submitted. Then the cell in that row loses its formula
Link to an example Sheet
Any advice would be appreciated
use:
=INDEX(SPLIT(FLATTEN(QUERY(TRANSPOSE(A2:G4),,9^9)), " "))
if dataset contains words in cells use:
=INDEX(SUBSTITUTE(SPLIT(FLATTEN(QUERY(TRANSPOSE(
SUBSTITUTE(A2:G4, " ", "♥")),,9^9)), " "), "♥", " "))