LibreOfficeDev 27.2 žinynas
Results in an array where each cell is computed by applying a formula to the corresponding cells of one or more input arrays.
=MAP(Array1 [; Array2 [;...]; Formula)
Array1 [; Array2 [;...]: The arrays that provides the arguments to the formula.
Formula: An expression defined by a LAMBDA function or similar, which processes the data from the provided array(s). If multiple arrays are supplied, their corresponding cells are passed as arguments to the formula or function. The formula or function must accept as many parameters as there are arrays. It must be the final argument of the MAP function.
If the arrays have different dimensions, the MAP function returns an array of size M × N, where M is the maximum number of rows across all arrays, and N is the maximum number of columns. Any extra cells in the resulting array that are not processed by the formula are filled with #N/A.
The formula =MAP(A2:C13;LAMBDA(var;var*3)) returns an array of same dimensions where each element of the source array is multiplied by 3.
COM.MICROSOFT.MAP