web
You’re offline. This is a read only version of the page.
close
Skip to main content
Community site session details

Community site session details

Session Id : nOCk0dPU+whhkUoMHWPtMa
Power Apps - Building Power Apps
Answered

Add the column of another table.

Like (0) ShareShare
ReportReport
Posted on 18 Oct 2019 14:32:02 by

Hi, everyone

I got this problem that I would expect to be easy to solve but has been impossible for me to do for the past two days.
I want to add the column of another table to my main table such that:

 

{
	MainTable: [
		{
			"Names": "John Doe",
			"loginName":"john.doe",
		},
		{
			"Names": "Jane Doe",
			"loginName":"jane.doe",
		}
	]
}

{
	Hours: [
		{
			"WorkedHours": 120.00
		},
		{
			"WorkedHours": 115.50
		}
	]
}

 

becomes a single collection like this:

{
	MainTable: [
		{
			"Names": "John Doe",
			"loginName":"john.doe",
			"WorkedHours": 120.00
		},
		{
			"Names": "Jane Doe",
			"loginName":"jane.doe",
			"WorkedHours": 115.50
		}
	]
}


Collect will just add the rows. AddColumns seems incapable of taking data from other tables. Update writes over the whole row. I read that Patch could do it but that I needed an anchor column so I went to the trouble of creating a Index for those two tables with this guide http://powerappsguide.com/blog/post/generating-row-numbers.

But Patch doensn't add them. I honestly don't know what to do. 

Categories:
  • Community Power Platform Member Profile Picture
    on 18 Oct 2019 at 19:24:18
    Re: Add the column of another table.

    It worked! It worked! Smiley Surprised

  • Verified answer
    mdevaney Profile Picture
    29,987 Moderator on 18 Oct 2019 at 14:42:57
    Re: Add the column of another table.

    @Anonymous 

    I believe I can help you.  From your post I understand you have made a collection that includes an Index number for each record that looks like this.

     

    MainTable
    [{
     "IndexA": 1,
     "Names": "John Doe",
     "loginName":"john.doe",
    },
    {
     "IndexA": 2, 
    "Names": "Jane Doe", "loginName":"jane.doe", }] HoursTable [ {IndexB: 1, "WorkedHours": 120.00}, {IndexB: 2, "WorkedHours": 115.50} ]

     

    Here's how I would add the WorkedHours to your MainTable.  The ADDCOLUMNS is able to get values from other tables when a LOOKUP function is used in the 3rd argument.

     

    AddColumns(
     MainTable,
     "WorkedHours",
     LookUp(HoursTable,IndexA=IndexB,WorkedHours)
    ) 

     

    Let me know if you have any questions.

     

    ---
    Please click "Accept as Solution" if my response helped to solve your issue so that others may find it more quickly. If your thought the post was helpful please give it a "Thumbs Up."

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

Announcing our 2025 Season 2 Super Users!

A new season of Super Users has arrived, and we are so grateful for…

Paul Stork – Community Spotlight

We are honored to recognize Paul Stork as our July 2025 Community…

Congratulations to the June Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 791 Most Valuable Professional

#2
MS.Ragavendar Profile Picture

MS.Ragavendar 410 Super User 2025 Season 2

#3
mmbr1606 Profile Picture

mmbr1606 275 Super User 2025 Season 2

Loading complete