List template export from one tenant SP online to other tenant SP online

sns 9,246 Reputation points
2021-10-12T06:25:38.053+00:00

I want a List template export from one tenant SP online to other tenant SP online List , is it possible? If yes how?
I saw there is no option to export list template from list settings , PFA.
139664-list.png

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

Accepted answer
  1. Echo Du_MSFT 17,316 Reputation points
    2021-10-13T02:49:49.063+00:00

    Hi @sns ,

    This is achievable

    Please follow the steps:

    1.Enable the Publishing function on the source tenant Sharepoint site. Please run the below PowerShell script as an admin:

    Connect-PnPOnline -url https://sourcetenant.sharepoint.com/sites/sitename  
    #SharePoint Server Publishing Infrastructure of Site Collection  
    Enable-PnPFeature -Identity f6924d36-2fa8-4f0b-b16d-06b7250180fa -force -Scope site   
    #SharePoint Server Publishing of Site   
    Enable-PnPFeature -Identity 94c94ca6-b32f-4da9-a9e3-1f3d343d7ecb -force -Scope web   
    

    2.Go to the source tenant Sharepoint list, List settings >> Save list as template

    Note:

    • If you want new lists created from this template to include the items in this list, check the "Include content" option.
    • Including content can increase the size of your template.

    140062-1.png

    140035-2.png

    3.Please click "list template gallery" link

    140064-3.png

    4.On the List Template Gallery page, select the list template and go to FILES tab to click Download a Copy

    140071-4.png

    5.Enable the Publishing function on the target tenant Sharepoint site. Please run the below PowerShell script as an admin:

    Connect-PnPOnline -url https://target tenant.sharepoint.com/sites/sitename  
    #SharePoint Server Publishing Infrastructure of Site Collection  
    Enable-PnPFeature -Identity f6924d36-2fa8-4f0b-b16d-06b7250180fa -force -Scope site   
    #SharePoint Server Publishing of Site   
    Enable-PnPFeature -Identity 94c94ca6-b32f-4da9-a9e3-1f3d343d7ecb -force -Scope web   
    

    6.Go to the target tenant Sharepoint site's Site Settings page, click List templates

    139997-5.png

    7.On the List Template Gallery page, go to FILES tab and click Upload Document to upload the list template just downloaded

    140006-6.png

    139998-7.png

    8.Go to the target tenant Sharepoint site's Site Contents page, click New >> App

    140054-8.png

    9.On the SharePoint apps page, click "classic experience" link.

    140016-9.png

    10.On the Classic Apps page, select the list template

    140025-10.png

    11.Create new list with this list template

    140007-11.png

    139999-12.png

    Thanks,
    Echo Du

    ================================

    If an Answer is helpful, please click "Accept Answer" and upvote it.
    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.

    2 people found this answer helpful.

0 additional answers

Sort by: Most helpful

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.