Help! I can't get what seems to be a very simple filter to work in a delegable fashion. My filter is below. This works, but requires the use of a text() function to get a value to compare from a SharePoint list. This isn't delegable and the list is going to be large eventually so I do need it to be. I've searched for this problem on the forums but everything I can see makes it look like this ought to work
The 'Breathe ID' field is a "single line of text" field in SharePoint. 111111 is a string in this example.
If I remove the text() function the formula becomes delegable but the filter doesn't return anything. There is no whitespace etc in the field entries.
SortByColumns(
Filter(
'All CPD',
Text('Breathe ID') = "1111111", 'Start on' >= FromDate && 'Start on' <= ToDate
),
"Name",
Descending
)
Please tell me what I am doing wrong? Many thanks for your time..!