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

Announcements

News and Announcements icon
Community site session details

Community site session details

Session Id :
Power Platform Community / Forums / Power Apps / DataTable with 2 Share...
Power Apps
Answered

DataTable with 2 Sharepointlists

(0) ShareShare
ReportReport
Posted on by 228

Hello Forum,

i have a Problem and i guess it's a little tricky.

 

I have a DataTable with connect to a SharePointList und gets Data. This works fine.

 

SortByColumns(
Filter(
SharePointList;
If(
Status.Value = "Belehrung";
Mitgliedsnummer = verstossMeldenMitglNr And Status.Value = "Belehrung";
true
);
If(
Status.Value = "Verstoß";
Mitgliedsnummer = verstossMeldenMitglNr And Status.Value = "Verstoß" And Author.Email = User().Email;
true
)
);
"Kontrolliert_x0020_am";
Descending
)

 

Is it Possible to get data from 2 SharePointLists at the same time

 

e.g. Show Data in the datatable from List 1 and List 2 mixed at same time?

 

Thanks

Categories:
I have the same question (0)
  • Verified answer
    mdevaney Profile Picture
    29,991 Moderator on at

    @Tamer66 

    The solution is pretty straightforward to implement if you use collections.  Are you comfortable using collections?

     

    Here's an example. I have two lists: MyList1 [1,2,3] and MyList2 [4,5,6].  I can set them up with the following code.

     

    ClearCollect(MyList1,{value:1},{value:2},{value:3});
    ClearCollect(MyList2,{value:4},{value:5},{value:6});

     

    I want MyList3 to holds the values from both tables [1,2,3,4,5,6] so I can use this code to make the join

     

    ClearCollect(MyList3,MyList1,MyList2);

     

    There are two things you must consider before using my method:

    1.  Any code using the ClearCollect function must be placed in a behaviour based property such as OnVisible, OnSelect, OnStart, etc.  You cannot directly enter it into the Items property of a data table or gallery.

    2.  My assumption is the column names in your 2 Sharepoint Lists match each other

     

    ---
    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

Season of Sharing Community Challenge Winners!

Congratulations to our community stars!

Kudos to our 2025 Community Spotlight Honorees

Expanding mentorship, skilling, and AI innovation

Congratulations to the July Top 10 Community Leaders!

These are the community rock stars!

Leaderboard > Power Apps

#1
WarrenBelz Profile Picture

WarrenBelz 358 Most Valuable Professional

#2
11manish Profile Picture

11manish 214 Super User 2026 Season 2

#3
Mohsin Ali Profile Picture

Mohsin Ali 185

Last 30 days Overall leaderboard