# WRAPROWS

## Content

The function wraps the provided row or column of values by rows after a specified number of elements to form a new array.

>type=note
> **Note**: WRAPROWS is a dynamic array formula, and you need to enable the dynamic array feature in the Workbook.

## Syntax

`WRAPROWS(vector, wrap_count, [pad_with])`

## Arguments

The function has the following arguments:

| Argument | Description |
| -------- | ----------- |
| *vector* | [Required] The vector or reference to wrap. |
| *wrap\_count* | [Required] The maximum number of values for each row. |
| *pad\_with* | [Optional] The value with which to pad. The default is #N/A. |

## Remarks

The elements of the vector are placed into a 2-dimensional array by row. Each row has wrap\_count elements. The row is padded with pad\_with if there are insufficient elements to fill it. If wrap\_count is greater or equal to the number of elements in vector, then the vector is simply returned as the result of the function.

## Examples

![image](https://cdn.mescius.io/document-site-files/images/7719ad0a-f083-46d7-aff6-f63e2e187c15/image.c03365.png)