Merrick
10/09/2025, 2:00 PMCeligo AI
10/09/2025, 2:00 PMAI generated answer (using internal Slack threads):The discrepancy between the number of results in the Excel file and the saved search results in NetSuite could be due to several reasons: 1. Excel Export Limit: NetSuite has a limit on the number of rows that can be exported to Excel. If your saved search results exceed this limit, the exported Excel file will not include all the results. 2. Email Size Limit: If you are emailing the Excel file, there is a size limit for attachments. If the Excel file exceeds this limit, it may be truncated, and some results may not be included. 3. Data Formatting: NetSuite strips all formatting on export. If your saved search results include highlighted or specially formatted data, this formatting will not be included in the exported Excel file. 4. Additional Filters: If you are using SuiteScript to load the saved search and apply additional filters, these filters may be affecting the results that are included in the exported Excel file. Here is a sample SuiteScript code to extract the results of a saved search into the file cabinet:
javascript
var searchTask = task.create({ taskType: task.TaskType.SEARCH});
searchTask.savedSearchId = 123; // CHANGE THIS
searchTask.filePath = ; // set this to where you want your CSV
var result = searchTask.submit();
Please note that you cannot use additional filters in the existing search using SuiteScript. If you need to apply additional filters, you will need to create a new search that includes these filters.
******
Disclaimer:
This response was generated by an artificial intelligence assistant based on previous conversations from multiple Slack channels, and may contain inaccuracies or mistakes.
******Celigo AI
10/09/2025, 2:00 PMSlack thread 1: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.858947754
Slack thread 2: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.858032227
Slack thread 3: here (available only if the original thread was posted in the last 90 days)
Similarity score: 0.856689453
Celigo AI
10/09/2025, 2:00 PMChris Corcoran
10/10/2025, 4:05 PMMerrick
10/10/2025, 4:06 PMChris Corcoran
10/10/2025, 4:09 PMMerrick
10/10/2025, 4:27 PMChris Corcoran
10/10/2025, 5:56 PMMerrick
10/14/2025, 1:44 PMChris Corcoran
10/16/2025, 6:06 PMMerrick
10/20/2025, 11:53 AM