You open the SharePoint admin center to check your tenant storage usage and see one number. Then you check OneDrive storage metrics for individual users and the total is different. This discrepancy is common and often causes confusion when planning storage capacity or troubleshooting quota alerts. The root cause is that the SharePoint admin center reports total tenant storage including shared SharePoint sites, while OneDrive metrics only show per-user OneDrive consumption. This article explains why the numbers differ, how each metric is calculated, and how to reconcile them for accurate capacity planning.
Key Takeaways: Reconciling OneDrive and SharePoint Admin Center Storage Numbers
- SharePoint admin center > Storage metrics: Shows total tenant storage consumed by all SharePoint sites, OneDrive accounts, and system caches combined.
- OneDrive admin center > Storage per user: Displays only the data stored in each user’s OneDrive, excluding shared site collections and recycle bins.
- Microsoft 365 admin center > Billing > Subscriptions: Lists your total purchased storage quota; comparing this to the admin center total reveals whether you are near the limit.
Why OneDrive and SharePoint Admin Center Storage Numbers Differ
Microsoft 365 storage is pooled at the tenant level. The SharePoint admin center reports the combined storage used by all SharePoint Online sites, all OneDrive for Business accounts, and certain system artifacts such as version history and recycle bins. OneDrive storage metrics, on the other hand, show only the data within each user’s personal OneDrive library. This is a deliberate design: SharePoint admin center gives you the big picture, while OneDrive admin center gives you per-user granularity.
The key technical reason for the mismatch is that the SharePoint admin center includes:
- All site collections (team sites, communication sites, hub sites)
- All OneDrive for Business accounts
- Files in the first-stage and second-stage recycle bins
- Version history of files across all sites and OneDrive accounts
- Metadata and system caches (typically small but counted)
OneDrive storage metrics in the OneDrive admin center only count the files and folders synced or stored in each user’s OneDrive root folder. They do not include recycle bins or version history. Additionally, if a user has a SharePoint site collection that is not their OneDrive, that storage is not reflected in OneDrive metrics.
Storage Quota Calculation Differences
The SharePoint admin center calculates storage based on the total used against the tenant’s purchased storage quota. For example, if your tenant has 1 TB base storage plus 10 GB per licensed user, the admin center shows how much of that pool is consumed. OneDrive metrics per user show only that user’s consumption against their individual OneDrive quota, which defaults to 1 TB but can be increased by an admin. These two views use different denominators: tenant-wide pool versus per-user cap.
Steps to Compare and Verify Storage Metrics
To understand exactly where the discrepancy comes from, follow these steps to pull metrics from both admin centers and compare them.
- Open the SharePoint admin center storage metrics page
Sign in to the Microsoft 365 admin center at admin.microsoft.com. Go to Admin centers > SharePoint. In the left navigation, select Reports > Storage metrics. This page shows the total storage used across all sites and OneDrive accounts. Make a note of the number in the Total storage column at the top. - View per-user OneDrive storage from the OneDrive admin center
In the Microsoft 365 admin center, go to Admin centers > OneDrive. Under Users, select OneDrive accounts. Here you see a list of all users with their storage used and quota. Select a few users and note their storage values. Summing these values will give you the total OneDrive storage. - Check the SharePoint Online Management Shell for site-level storage
Install the SharePoint Online Management Shell if not already installed. Run the following command to get storage usage for all site collections:Get-SPOSite | Select-Object Url, StorageUsageCurrent. This includes team sites, communication sites, and OneDrive sites. The total from this command should match the SharePoint admin center total. - Isolate OneDrive site storage from the shell
RunGet-SPOSite -IncludePersonalSite $true -Filter {Url -like "-my.sharepoint.com/personal/"} | Select-Object Url, StorageUsageCurrentto list only OneDrive sites. Compare the sum of these values to the total from step 2. They should match. - Subtract OneDrive storage from total tenant storage
Take the total from step 1 and subtract the sum from step 4. The remainder is the storage used by all non-OneDrive SharePoint sites plus recycle bins and version history. This remainder explains the discrepancy you see in the admin center.
If Storage Metrics Still Do Not Match After Verification
OneDrive shows more storage than SharePoint admin center for the same user
This is rare but can happen if the user has files in the OneDrive recycle bin that are still counted in the OneDrive admin center but not in the SharePoint admin center total. The SharePoint admin center may exclude recycled items from certain aggregate reports. Empty the recycle bin in OneDrive and then refresh both admin centers after 24 hours.
SharePoint admin center shows zero storage for a user with OneDrive files
This occurs when the user’s OneDrive site collection has been deleted or is in a grace period. The SharePoint admin center stops reporting storage for deleted site collections. However, the OneDrive admin center may still show the user’s storage if the deletion has not fully propagated. Wait 30 days for the grace period to expire, or restore the user’s OneDrive from the Microsoft 365 admin center.
Recycle bin storage is not visible in either admin center
The first-stage recycle bin storage is included in the SharePoint admin center total but is not shown as a separate line item. To see recycle bin storage, use the SharePoint Online Management Shell command Get-SPOSite -Identity . The second-stage recycle bin (site collection recycle bin) is also included. This hidden storage can account for several gigabytes of discrepancy.
SharePoint Admin Center vs OneDrive Admin Center: Storage Reporting Differences
| Item | SharePoint Admin Center | OneDrive Admin Center |
|---|---|---|
| Scope of storage reported | All SharePoint sites, OneDrive accounts, recycle bins, version history | Only each user’s OneDrive library content |
| Recycle bin inclusion | Included in total, not itemized | Excluded from per-user metrics |
| Version history inclusion | Included in total | Excluded |
| Per-user quota display | Not available | Shows used and quota for each user |
| Tenant-level total | Shown at top of storage metrics page | Not shown |
| Data export method | CSV export from storage metrics page | CSV export from OneDrive accounts list |
You can now identify the source of the discrepancy between OneDrive and SharePoint admin center storage metrics. For accurate capacity planning, always use the SharePoint admin center total as your tenant-level number and the OneDrive admin center for per-user auditing. As an advanced tip, run the SharePoint Online Management Shell weekly and export storage data to a spreadsheet to track trends, especially for recycle bin and version history growth.