Given a long spreadsheet table, is there a function to wrap it (break it) into multiple column tables?
What I tried
=query(dataTable, "select A, B limit "&floor(ROWS(dataTable)*0.5))
=query(dataTable, "select A, B offset "&floor(ROWS(dataTable)*0.5))
but maybe there is a better solution, especially that it is not flexible in the number of columns (e.g: I want the table to be distributed on 3 or 4 tables not 2).
One other problem is if the input table is created using query, and that query is changed to include additional columns, the cells where they include =query(dataTable, "select ... must be separated more to give space.

