Hi all,
having an issue i cant work out... which part is causing the delegation problem and what would be the alternative?
here is what I use:
DropdownAvailableTime, items: [ "0", "<2", "<4" ]
ExpectedFinishDate, column in SPO, Date
in the filter I include following, which works but causes also delegation problem:
If(
DropdownAvailableTime.Selected.Value = "0", Value(ExpectedFinishDate - Today()) =7,
DropdownAvailableTime.Selected.Value = "<2", Value(ExpectedFinishDate - Today())<=14,
DropdownAvailableTime.Selected.Value = "<4", Value(ExpectedFinishDate - Today())<=28
)