Question – SP Lists
I have a SharePoint customized forms, connected to List A and List B, both used the same DataSource.
The List A uses the default item of the forms SharePointIntegration.Selected, and List B, uses a LookUp function to get the specific List B item based on the selected List A item.
List A Item:
If(IsBlank(SharePointIntegration.Selected) || IsEmpty(SharePointIntegration.Selected),First([@'ListA']),SharePointIntegration.Selected)
List B Item
LookUp(ListB, ID = SharePointIntegration.Selected.ID)
The question I would like to ask is this, is it possible to add a 3rd list (List C) to the current setup? I have tried to use the same LookUp function that List B uses in List C, but unfortunately this didn’t work.
So please could someone advise if this is possible to connect List C to List A and List B?