Combining different lists data and showing it in a webpart - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T20:13:18Zhttp://stackoverflow.com/feeds/question/768247http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/768247/combining-different-lists-data-and-showing-it-in-a-webpart0Combining different lists data and showing it in a webpartAli2009-04-20T13:28:12Z2009-06-10T17:36:16Z
<p>hello, let me explain my current situation</p>
<p>i have a SharePoint site lets say it is MAIN, and a subsite lets call it SUBMAIN</p>
<p>in MAIN i have a list called "a" and in subMAIN i have a list called "b" </p>
<p>both lists have the exact same columns, </p>
<p>i need to show the content of both lists (ordered by modified date for example) in one webpart in the main page i know it is possible some how but couldnt get to it.</p>
<p>currently i am showing only the content of list "a" in a content query webpart (i have changed the way it display and added to it horizontal merquee) so it will be nice if somehow i can add contents of list"b" also to the same content query webpart (but if it is not possible in content query webpart its ok, at least let me know what other options do i have)</p>
<p>your help is appreciated</p>
http://stackoverflow.com/questions/768247/combining-different-lists-data-and-showing-it-in-a-webpart/768592#7685921Answer by Scott Price for Combining different lists data and showing it in a webpartScott Price2009-04-20T14:42:39Z2009-04-20T14:42:39Z<p>If you are using SharePoint Designer to do this, take a look at <a href="http://blah.winsmarts.com/2007-10-Performing%5Fjoins%5Fbetween%5FSharePoint%5Flists.aspx" rel="nofollow">this blog</a>.</p>
<p>If you are building your own web part, I would perform two queries on the SPList objects. You can then aggregate, sort, etc. the results however you would like. If you aren't familiar with SPList, you can look <a href="http://msdn.microsoft.com/en-us/library/ms456030.aspx" rel="nofollow">here</a> for the MSDN overview.</p>
http://stackoverflow.com/questions/768247/combining-different-lists-data-and-showing-it-in-a-webpart/768879#7688791Answer by Abs for Combining different lists data and showing it in a webpartAbs2009-04-20T15:52:08Z2009-04-21T15:49:40Z<p>I've built web parts to display items from 2 different lists, and I did something similar to what Scott Price suggested. I used an SPQuery object for each list and used it to get DataTable objects that I could then use with things like Repeaters and DataLists. You could merge your two tables and do something similar. </p>
<p>The biggest trick for me was setting up the custom templates for DataBinding in a webpart. To do that, I created a custom class that implemented the ITemplate interface and then emitted the HTML for each item from the template class in an event handler. Then, you just create an instance of your template class and set that as the ItemTemplate property of your, say, DataList. </p>
<p><a href="http://professionalaspnet.com/archive/2006/06/15/Useing-ITemplate-in-the-Data-Controls.aspx" rel="nofollow">This post</a> and <a href="http://blog.developers.ie/cgreen/archive/2006/01/10/1850.aspx" rel="nofollow">this one</a> do a better job of explaining that approach, but the nice thing is that you have complete control of the markup, and you can style it as you like. </p>
http://stackoverflow.com/questions/768247/combining-different-lists-data-and-showing-it-in-a-webpart/769013#7690130Answer by ROXORITY for Combining different lists data and showing it in a webpartROXORITY2009-04-20T16:24:11Z2009-04-20T16:24:11Z<p>If you don't want to code, I guess the Google term to use for pre-built solutions is "SharePoint list roll-up".</p>
http://stackoverflow.com/questions/768247/combining-different-lists-data-and-showing-it-in-a-webpart/770403#7704030Answer by MAngrisano for Combining different lists data and showing it in a webpartMAngrisano2009-04-20T22:49:45Z2009-04-20T22:49:45Z<p>If you're not looking to code your own solution, you might consider this webpart on codeplex: </p>
<p><a href="http://rssaggregator.codeplex.com/" rel="nofollow">http://rssaggregator.codeplex.com/</a> </p>
<p>It's actually an RSS aggregator, but since all SharePoint lists have built-in RSS feeds, you can use it just as well to aggregate the SharePoint lists from the different sites.</p>
http://stackoverflow.com/questions/768247/combining-different-lists-data-and-showing-it-in-a-webpart/977089#9770890Answer by Allan Wellenstein for Combining different lists data and showing it in a webpartAllan Wellenstein2009-06-10T17:36:16Z2009-06-10T17:36:16Z<p>Another approach is SLAM, <a href="http://slam.codeplex.com" rel="nofollow">SharePoint List Association Manager</a>, an open source project my company created and actively supports. SLAM will allow you to configure those two lists to be automatically synchronized to SQL tables at which point you can create a query to join the two. If you have the two lists built off a content type (since they have the same fields) you can actually slam the content type and have both lists in the same SQL table.</p>