Hi everyone,
In PowerApps I have two SharePoint lists as source (list "Request" and list "Assess"). These lists have common columns ("Contractor" and "Country"), of type lookup, that have as source a third list ("Assets" list). I need to create a collection to combine these two lists ("Request" and "Assess") into one table.
I was able to create the collection "SafetyAlertList", which combines these two lists "Request" and "Assess". However, this collection does not show values for the lookup type columns ("Contractor" and "Country").

Note: The "Country" and "Country2" columns should be only one. When the lists were created in SharePoint this was the initial name given to these columns and PowerApps does not recognize the current name.
Current formula:
ClearCollect(SafetyAlertList,AddColumns(ShowColumns(Filter('Request',Status = "Pending"),"Contractor","Country2"),"Status","Pending"));
Collect(SafetyAlertList,AddColumns(ShowColumns(Filter('Assess',Status = "Approve"),"Contractor","Country"),"Status","Approve"));
I've searched in several forums, watched several videos, and I actually found some similar things. However, I could not find any solution that solves this issue.
Has anyone had the same problem and managed to solve it? Can you help me, please?
Kind Regards.