Hello Everyone
Can someone tell me why my label field is still empty?
I mean its only 1 item and I set my delegation limit up to 2000 items. Normally it should still load something in it, right?
My database is sharepoint
Greetings
Yannick

Hello Everyone
Can someone tell me why my label field is still empty?
I mean its only 1 item and I set my delegation limit up to 2000 items. Normally it should still load something in it, right?
My database is sharepoint
Greetings
Yannick
@Anonymous
To be clear - your Record limit in the app is set to 2000. You cannot set anything called a "delegation limit".
Delegation is a process where you delegate the criteria to the datasource - it is not a limit.
Your issue is that you are using a LookUp in your LookUp. This cannot be delegate to a datasource.
Please consider changing your Formula to the following:
With({_ID:
LookUp(EntryCategoryRelation; Entry_ID.Value = "1", Category_Id.Value)
},
LookUp(Categories; ID = _ID; Name)
)
I hope this is helpful for you.