@bbsin ,
This is not Delegable, but
SortByColumns(
Filter(
list',
(
Len(combstatus.Selected.Value)=0 ||
Status.Value = combstatus.Selected.Value
) && 'Created By'.Email = User().Email
),
"ID",
Descending
)
This is Delegable
With(
{
wList:
Filter(
Sort(
List,
ID,
Descending
),
Len(combstatus.Selected.Value)=0 ||
Status.Value = combstatus.Selected.Value
)
},
Filter(
wList,
'Created By'.Email = User().Email
)
)
providing the top filter returns les than 2,000 records.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.