[]
This function returns a calculated array of a specified row and column size by applying a LAMBDA.
MAKEARRAY(rows, cols, lambda(row, col))
This function has the following arguments:
Argument | Description |
---|---|
rows | The number of rows in the array. Must be greater than zero. |
cols | The number of columns in the array. Must be greater than zero. |
lambda | A LAMBDA that is called to create the array. The LAMBDA takes two parameters:
|
If an invalid LAMBDA function or an incorrect number of parameters are provided, it returns a #VALUE! error called "Incorrect Parameters".
If a row or column argument is set to a value less than 1 or to a non-number, it returns a #VALUE! error.
Returns an array.
MAKEARRAY(3, 3, LAMBDA(r,c, r*c))
MAKEARRAY(D2,E2,LAMBDA(row,col,CHOOSE(RANDBETWEEN(1,3),"Red","Blue","Green")))