How to Enable Tree View in SharePoint Online? Let’s Find
SharePoint Online is an associated app of Microsoft 365 that allows organizations to manage sites, streamline workflow, and improve collaboration. One of its major benefits is to navigate the content in a well-structured manner. Among all of the key features, there is a tree view option is also there to simplify the accessing of nested folders and libraries in SharePoint Online. However, enabling the tree view is a bit complex and hectic too, as it is not a straightforward option just like others. This comprehensive guide will take you through the complete step-by-step process of how to enable tree view in SharePoint Online.
Table of Content
What is Tree View in SharePoint Online?
Before directly moving to the process of enabling the SharePoint tree view, it is necessary to know why it is essential. The tree view is a navigation pane to show the entire structure of the document library including folders and subfolders. It adds more value for analyzing the large libraries and helps users locate the essential files and folders.
Top 4 Advantages of Enabling Tree View in SharePoint Online
1. Improved Navigation – After enabling the tree view, users can easily locate and access the files from the large and nested document libraries.
2. Enhanced Content Management – Users can easily add or remove the files and folders. It enhances the content management in a better way.
3. Reduced Time and Effort – As the users can analyze the document library from the tree view, as a result, it saves time and effort for the users to search the files and folders. In addition, also helps to manage SharePoint user profiles.
4. Reduction of Learning Curve – New users find difficulties in searching for the document libraries if the tree view is not enabled. But if it is enabled then they do not need to spend a lot of time to get familiar with the SharePoint files.
How to Enable Tree View in SharePoint Online Using Admin Center?
Before going further into the process, make sure you have already set the library list experience to classic. To do so, you can go to the Library Settings > Advanced Settings and List Experience. After that, follow the below steps to enable the tree view in SharePoint Online.
- Step 1. Open the SharePoint for that you want to enable the tree view.
- Step 2. Click on Settings and then Site Settings.
- Step 3. Hit on the Navigation elements under the Look and Feel option
- Step 4. Finally, tick the checkbox of Enable Tree View.
- Step 5. Press Ok to apply the changes.
After enabling the tree view in the SharePoint site, you can also use the Expand or Collapse options. Through these options, you can go deeper into the folders and also revert using the collapse option.
Enable Tree View in SharePoint Online Using PowerShell
By default, SharePoint shows the list and libraries in flat mode. So, choosing the items for the tree view becomes tedious. But PowerShell makes the process simpler, below are the steps to do so.
$Siteaddress = “https://empdetailssharepoint.com/sites/Accounts”
Try {
Connect-PnPOnline -Url $Siteaddress -Interactive$Web1 = Get-PnPWeb -Includes TreeViewEnabled
$Web1.TreeViewEnabled = $True
$Web1.Update()
Invoke-PnPQuery
Write-Host “Tree View is Enabled!” -f Green
}
Catch {
Write-host “Error occurred:”$_.Exception.Message
}
Admin’s Dilemma While Implementing Tree View
As these all tasks related to SharePoint Online are handled by the SharePoint administrator. But there might be a situation when the admin deletes the sites or subsites by mistake during the enabling of tree view. Then what to do next.
In that situation, admins are advised to use the Most Reliable SharePoint Migration Tool. This tool helps to transfer your sites and subsites to another tenant effortlessly. This tool also preserves the files and folder hierarchy and originality during the migration process.
Conclusion
In this article, we discussed how to enable tree view in SharePoint Online. Because enabling the tree view is a bit complex task. Therefore, we have elaborated on the two different ways to achieve the task. You can opt for any of the solutions which is more relevant to you. An upcoming problem that the admins can face is also explained with an efficient solution. Hence the query is resolved.