Applies a LAMBDA function to each row in an array and returns an array of results.
Bu işlev, Google E-Tablolar'da Excel'deki gibi çalışır — aynı söz dizimi ve bağımsız değişkenler.
BYROW(array, lambda)The BYROW function processes an array row by row using a custom LAMBDA function. It is particularly useful for performing row-wise calculations, such as summing or averaging data across specific rows in a range.
=BYROW(A1:B2, LAMBDA(row, SUM(row)))Sonuç: Array of row sums
Calculates the sum of each row in the range A1:B2.
No, BYROW always returns an array of results, one for each row in the input array.