
Hi @Chris Degrand ,
Good day! Welcome to Q&A forum.
This is a known limitation in SharePoint search where Excel files may not be fully indexed beyond a certain point. Here's how to address it:
Root Causes:
- Default Row Limit: SharePoint has a default limit on how many rows it indexes from Excel files
- File Size Limitations: Very large Excel files may not be fully processed
Solutions
1. Adjust Excel Indexing Settings
# PowerShell to increase the row limit (default is 512)
$searchApp = Get-SPEnterpriseSearchServiceApplication
$searchApp.SetProperty("ExcelNumberOfRowsToIndex", 5000) # Set your desired value
$searchApp.Update()
2. Modify File Size Limits
# Increase the maximum file size for indexing (default is ~16MB)
$searchApp = Get-SPEnterpriseSearchServiceApplication
$searchApp.MaxDownloadSize = 52428800 # 50MB in bytes
$searchApp.Update()
3. Full Crawl Required
After making these changes, you must perform a full crawl:
- Go to Central Administration > Search Service Application
- Navigate to "Content Sources"
- Start a full crawl
Hope these information helps.
Please do let us know if you have any further queries.
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.