Hi All,
I am trying to get around delegation by using a collection.
When the user comes into my app I only want them to see their items and only allow them to modify what they entered "today".
My first attempt was in the items of the browse gallery: Delegation Bad 😞
SortByColumns(Filter([@'Entry'], StartsWith(Title, TextSearchBox1.Text),'Created By'.DisplayName = CurrentUser,Created >= Today()), "Created", If(SortDescending1, Descending, Ascending))
I tried to use a collection to get around delegation, but User() gives me one too... Delegation Bad 😞
ClearCollect(MySuff, {LocNum:LookUp('Entry', 'Created By'.DisplayName = User().FullName).'Stuff Number'})
I thought I might be able to just pull the top 10 or even 100 from the list for that user, but can't figure that out.
Any help with this would be greatly appreciated.
I would hate to have to import the list items into SQL, and delete the list when it gets to 2000...
TIA,
Joe