I have two SharePoint lists:
Person (Title)
Account (Title, Person)
Joining the tables using Person.Id is not delegable:
I have read in a number of articles that you need to use Person.Value rather than Person.Id when using lookup fields in Filter/LookUp functions. So I have set the lookup field to have the ID as Person.Value:
Joining the tables using .Value does not work, because you are comparing a string (Person.Value) with a number (Person[@ID]):
Converting Person.Value to a number or Person[@ID] to text does not work, because the Text and Value functions are not delegable:
This is the most basic form of join for two SharePoint lists. How can this be achieved without using collections and only using delegation?
Solved! Go to Solution.
Hi @peteaxtell ,
The Join Method you used is not delegable, that has been officially claimed from here .
However, if you just want to display the related field value in Gallery, there is no need to join the related field to table using AddColumns() function. Just add a Label in gallery and set Text property as follows, the related field value can be displayed well without any delegable warning.
LookUp(Account, Person.Value=Text(ThisItem.ID)).Title
Hope this helps.
Sik
Hi @peteaxtell ,
The Join Method you used is not delegable, that has been officially claimed from here .
However, if you just want to display the related field value in Gallery, there is no need to join the related field to table using AddColumns() function. Just add a Label in gallery and set Text property as follows, the related field value can be displayed well without any delegable warning.
LookUp(Account, Person.Value=Text(ThisItem.ID)).Title
Hope this helps.
Sik
Stay up tp date on the latest blogs and activities in the community News & Announcements.
Mark your calendars and join us for the next Power Apps Community Call on January 20th, 8a PST
Dive into the Power Platform stack with hands-on sessions and labs, virtually delivered to you by experts and community leaders.
User | Count |
---|---|
202 | |
174 | |
62 | |
32 | |
31 |
User | Count |
---|---|
324 | |
268 | |
104 | |
73 | |
56 |