2 SP Lists with same structure to create a view

Hadzhiyska, Eleonora 20 Reputation points
2026-03-29T03:37:56.5933333+00:00

Hello, could you give me an idea how to combine 2 SP Lists with the same structure to create a view.

list 1 consists 10 000 rows, list2 1000 and will grow. Data is from different months

Thank you in advance

Microsoft 365 and Office | SharePoint | For business | Windows
0 comments No comments

3 answers

Sort by: Most helpful
  1. Sophie N 17,235 Reputation points Microsoft External Staff Moderator
    2026-03-29T04:37:56.38+00:00

    Dear @Hadzhiyska, Eleonora,

    I understand you want to combine data from two SharePoint lists with the exact same structure to create a unified view.

    As our current forum primarily supports general Microsoft 365 products, and your request involves complex data merging and large lists that are best handled via Power Automate or Power BI, I recommend posting your question in the specialized Microsoft Power Platform Community or the Power BI forums - Microsoft Fabric Community.

    I suggest this redirection because those forums are monitored by dedicated product engineers and experts who specialize in building advanced data automation and reporting solutions. They will be able to provide you with the exact flow logic or Power Query steps needed to manage your 11,000+ rows efficiently without hitting SharePoint threshold limits.

    I truly appreciate your understanding and want to ensure you receive the most accurate and qualified support. Please let me know if you need any help structuring your question for the Power Automate community.

    Was this answer helpful?

    0 comments No comments

  2. Hadzhiyska, Eleonora 20 Reputation points
    2026-03-29T03:43:51.3066667+00:00

    Can some one please not AI to help me

    Was this answer helpful?


  3. AI answer

    2026-03-29T03:38:08.14+00:00

    SharePoint does not support a “view” that directly merges two separate lists into one virtual list. To work with two lists that have the same schema, there are two main patterns:

    1. Use a client (Power Apps / custom app) to show a combined view
      • Build a client application (for example, a Windows Phone or other custom app) that connects to both lists.
      • In the app, create two data providers/view models, one for each list, and then present them together in the UI.
      • For lists with the same schema, the same data provider and view model logic can be reused; only the target list URL or list ID changes. The app can then display items from both lists in a single screen or allow navigation between them.
      • The pattern is: one ListDataProvider/ListViewModel pair per list, and XAML pages (views) bound to each view model. Users can navigate between the lists or you can aggregate data in the client.
    2. Keep lists separate but provide navigation between them
      • If a single merged grid is not strictly required, create separate views/pages for each list and add navigation (buttons/links) so users can quickly switch between them.
      • This is the same pattern used when handling multiple SharePoint lists with the same schema in a Windows Phone app: one primary list view and a secondary list view, each bound to its own data provider, with buttons to move between them.

    If a truly unified list is required inside SharePoint itself (for example, one view in a site), the supported approach is to consolidate data into a single list (for example, by adding a “SourceMonth” or “SourceList” column) and then use standard list views and filters. SharePoint out of the box does not provide a cross-list view that behaves like a single list.


    References:

    AI-generated content may be incorrect. Read our transparency notes for more information.

    Was this answer helpful?

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.