I'm trying to concatenate rows of a matrix in a spreadsheet, which I've got from an importhtml call.
For example, if I have a 3x3 table:
A B C
D E F
G H I
I would like a command/function to convert it a row like so:
A B C D E F G H I
The idea is that each line will have a different html form which the same table/data is meant to be extracted. This cannot be done manually each time.

