Hello,
I am new to PowerApps, and I want to list down all contacts in a gallery along with the 'web role' for each 'Contact'.
I tried the following code,
ThisItem.'Full Name' & LookUp('Web Roles','Web Role'=ThisItem.Contact,Name)
I am not sure on which field both the entities are linked each other.
Help is really appreciated!!
Solved! Go to Solution.
Hi @praneshJ ,
Do you want to list all related web role based on the gallery of display contact entity?
Is web role and contact entity relationship N:N?
If so, you could set like this:
1)gallery's Items:
Contacts
2)one label's Text inside the gallery:
ThisItem.'Full Name' & Concat(ThisItem.'Web Roles',Name&" ")
Then the label will list all related web role's Names in each item of the gallery.
Best regards,
Hi @praneshJ ,
Do you want to list all related web role based on the gallery of display contact entity?
Is web role and contact entity relationship N:N?
If so, you could set like this:
1)gallery's Items:
Contacts
2)one label's Text inside the gallery:
ThisItem.'Full Name' & Concat(ThisItem.'Web Roles',Name&" ")
Then the label will list all related web role's Names in each item of the gallery.
Best regards,