Skip to main content
Workday User Guide
Last Updated: 2025-10-31
BYROW

BYROW

Description

Applies a LAMBDA function to each row of an array and returns an array of the results.
This function is useful for performing row-wise operations, such as calculating sums, averages, or custom metrics for each row.

Syntax

BYROW(
array
,
lambda
)
  • array
    : The array to be separated by row.
  • lambda
    : A LAMBDA that takes a row as a single parameter and calculates one result.
    • row
      : A row from the array.