Wraps the provided row or column of cells by rows after a specified number of elements to form a new array.Learn more
The WRAPROWS function in Google Sheets is a function that splits a range of cells horizontally into multiple rows based on a specified number of cells per row (the "wrap_count" parameter).
For example, if you have a range of cells A1:F1 and you want to split them into 3 cells per row, you can use the formula =WRAPROWS(A1:F1, 3) which will return a result with 2 rows, the first row with cells A1:C1 and the second row with cells D1:F1.
You can also specify a third parameter, "pad_with", which adds a specified value to any empty cells that are created when splitting the original range into rows.