I got a good head start with help previously here where I set up the gallery from multiple tables:
Solved: Re: Joining multiple tables for gallery view - Power Platform Community (microsoft.com)
But now, I want to display the detail information from the gallery on another screen. It's like over 50 fields combined from the two data tables from SharePoint.
For the View form screen showing the details, I set the "DataSource" property of the form to:
AddColumns(
Orders As Main,
"CustomerDetails",
LookUp(
Customers,
Email = Main.CustomerEmail
)
)
And I set the "Item" property to:
Gallery3.Selected
I am getting no errors, but the only fields that are showing up on the form are from the Orders. I am getting no Customers fields and when I search to add fields in the side bar, the Customers fields do not show up, and I want to show them too.
Is there a way to do this in PowerApps? Or do I need to have a SharePoint table in the backend that combines both tables?