I need help to figure out how to create a collection based on two different datasources.
1. I have a collection in my app called colSelectedCustomers
It have two columns, NAME and CUSTOMER_ID
2. Then i have a large datasource (dataverse table) containing contact information to all customers.
So in dataverse there is a relationship between the customer table and the contact informaiton table. But in my app i am currently just working with a small collection.
Now i want to create a new collection called colSelectedContactInfo
How can i write a code that looks at each row in colSelectedCostumers and gets the row from the table with costumer contact info?
For All rows in colSelectedCostumers do a LookUp for each CostmersID in the table with costumers contact info and fetch the row that have the same ID and add it to the collection colSelectedContactInfo
I cant figure out how to write this code?
Hi @Oskarkuus ,
You would need to reference each field like this
ClearCollect(
colSelectedContactInfo,
AddColumns(
colSelectedCustomers.
"ReferenceFieldName1"
LookUp(
CustomerContactTable,
YourCustomerIDField = CUSTOMER_ID
).YourRequiredField1
)
)
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.
Visit my blog Practical Power Apps
Hi @Oskarkuus ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
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.
Visit my blog Practical Power Apps
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
180 | |
52 | |
41 | |
38 | |
28 |
User | Count |
---|---|
255 | |
81 | |
71 | |
68 | |
66 |