Sum
This Flow Script tutorial explains how to use the Sum function with syntax and examples.
Last updated
Was this helpful?
This Flow Script tutorial explains how to use the Sum function with syntax and examples.
Last updated
Was this helpful?
Was this helpful?
sum(orderQuantity.Quantity)
Result: 27
Sum([col: "4"] & [col: "7"])
Result: 11
let projectedProfit = sum((orders where isConfirmed).value) - sum(expenses.cost);