I am trying to replicate part of the lookup column functionality from SharePoint Lists in Dataverse, and I could use some suggestions...
In SharePoint, you can create a lookup column that references another list. When you do that, you can also return other columns from that lookup list.
I'm looking to replicate that end result in Power Apps using Dataverse.
Here is a specific example:
- I have a table that contains the following columns:
| Product Group Name | Product Group Leader Name | Product Group Leader Email | Product Group Description |
| Text | Text | Text | Text |
- I have a second table that has the following columns
| Product Name | Product Group Name | Product Group Leader Name | Product Group Email |
| Text | Lookup | Text | Text |
What I would like to have happen is for the Product Group Leader Name and Product Group Leader Email fields of the second table to auto-populate based on the selection from the Product Group Name Lookup.
These tables currently have a Many -> One Relationship (Second Table to First). I cannot figure out how to reference the data from the first table into the second based on what is selected.
Does anyone have any thoughts on this?