ajinkya
ajinkya

Reputation: 362

combine 2 data sources and display data on single table in power apps

as per the diagram I want to display a table on the simple canvas app which is a combined result of both employee and department table.

I have no idea how I could do that in power apps. tried many things maybe I am doing it in an incorrect way.

Upvotes: 1

Views: 17895

Answers (1)

SIE_Vict0ria
SIE_Vict0ria

Reputation: 194

App > On Start:

ClearCollect(NewTable,
    AddColumns(Employee_Table,
        "Department_Name",LookUp(Department_Table,Department_ID=Employee_Table[@Department_ID],Department_Name)))

Then set the table's item to NewTable.

Upvotes: 3

Related Questions