Hello community!
i’m trying to:
- calculate and display values on a page based on the X columns values in a table filtered by date range controls.
So far I was able to calculate total number of the values. count()
Need to calculate SUM, AVG, MAX/MIN etc.
Formula:
FormulaMap(
Refueling.Date,
CurrentValue >= [date fleet].Split(",").First().toDate() AND
CurrentValue <= [date fleet].Split(",").last().toDate()
)
.Filter(
CurrentValue.Contains(true)
)
.Count()
Must be related to the: match() , filter(), formulamap() , lookup() but I don’t know how to implement. Please help!