Hi All,
I've got a stubborn delegation warning that I am unsure how to handle:

Here's a clear view of the code, in the Items property of a nested gallery:
With({
closeDate: DateAdd(DateValue(labFirstSunday.Text), ThisItem.Value, Days),
closeDatePlusOne: DateAdd(DateValue(labFirstSunday.Text), ThisItem.Value+1, Days)},
Filter(Deals,
ClosingDate >= closeDate,
ClosingDate < closeDatePlusOne
)
)
This is a gallery-within-a-gallery to create a calendar to show records from the Deals table by ClosingDate. ClosingDate is a date-only Dataverse column, which should be delegable in this situation. However, I get a warning.
I have tried a nested With() to prefilter the Filter() by the first filtering term, but I still get a delegation warning on that one too.
Any ideas on how to get this one to delegate?
TIA,
Bryan