Export to excel file stops after approx 3500 elementsIssue Customer set system property - glide.xlsx.export.limit to a value say 50000 and expects the export to hold 50000 records in the xlsx sheet. however in reality less number of records are exported in the xlsx file CauseNumber of records exported in xlsx file depend of 2 factors1. Maximum export limit2. Maximum Cell limit. There are 2 system properties which are of prime importance here - 1. glide.xlsx.export.limit2. glide.xlsx.max_cells - Whenever you export to Excel and the resultant spreadsheet has more than 500,000 cells (by default), the export process stops and you are given the Excel file at that point. In the bottom row, there will be the following message: Export stopped due to excessive size. Use CSV for a complete export.ResolutionYou can update the system properties value for export limit and cell limit to hold intended number of records. Note - Increasing this threshold of max cells may cause a memory issue in your instance. The threshold is set at an appropriate level to prevent resource issues.The export will put the information into the Excel document with 32,000 rows per spreadsheet. Excel exports are intended for relatively small exports, fewer than 500,000 cells, while CSV can handle larger exports.