Linking a Microsoft LIST to an existing SharePoint site

Chambers, Matthew 1 Reputation point
2022-05-21T14:32:05.717+00:00

I recently created a new Microsoft LIST through the LISTS App. When i created it I accidentally forgot to have it save to our Departments SharePoint Site. Now it lives in my LISTS App and i have given everyone in my office access to it but I would really like it to be on our Depts. SharePoint Site's Document Library. Is it too late to put it on there and have all the changes save to there as well? I hope not. I did try to Export it to Excel then create a new List in SharePoint but it didn't have the look and feel of the LISTS i created.

Microsoft 365 and Office SharePoint For business Windows
{count} votes

1 answer

Sort by: Most helpful
  1. Tong Zhang_MSFT 9,251 Reputation points
    2022-05-23T09:42:25.24+00:00

    Hi @Chambers, Matthew ,

    According to my research and testing, you can save the Microsoft list as template, and then add it to your SharePoint site List template ,and then using the list template and import data from excel into the list. You can follow these steps:

    1.Open PowerShell with run as Administrator ,and run the command Install-Module -Name Microsoft.Online.SharePoint.PowerShell
    2.Then run the following command

    Connect-SPOService -Url “https://xxxxx-admin.sharepoint.com”  
    $extracted = Get-SPOSiteScriptFromList –ListUrl “https://yourcompany.sharepoint.com/sites/yoursite/Lists/YourList”  
    $listscript = Add-SPOSiteScript -Title “IW Mentor Company Store” -Description “This creates a company store list” -Content $extracted  
    Add-SPOListDesign -Title “IW Mentor Company Store” -Description “Keep track of departmental available supplies” -SiteScripts $listscript.Id -ListColor Blue -ListIcon BullseyeTarget   
    

    3.Click New ->> List .You will see the list template you just added .
    204569-image.png204613-image.png

    4.Click the list template and click use template.
    204645-image.png

    5.Export list to excel from your Microsoft List , then go back to SharePoint List and click Edit in grid view
    204635-image.png

    6.Select data in a column of an Excel table, and press Ctrl+C to copy the selected data to clipboard.
    204661-image.png

    7.Then press Ctrl+V to paste data to the SharePoint list.
    204614-image.png

    More information for reference:
    https://wonderlaura.com/2021/09/21/sharepoint-custom-list-templates/
    https://www.nakivo.com/blog/how-to-import-and-export-data-from-excel-to-sharepoint-lists-and-vice-versa/

    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please make sure that you completely understand the risk before retrieving any suggestions from the above link.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



Your answer

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