Hi everybody, i have a screen with 2 date pickers. So they control a gallery who shows sharepoint list elements, i need to sum one column of that list but delimited by the selected dates in the 2 date pickers, i tried something like this:
Set(
varTotal;
Sum(
Filter(
Sales;
(IsBlank(DatePicker1.SelectedDate) ||
Fecha >= DatePicker1.SelectedDate) &&
(IsBlank(DatePicker2.SelectedDate) ||
Fecha <= DatePicker2.SelectedDate)
),
Total
)
);
I have the same question (0)