dosubot[bot] commented on issue #35139: URL: https://github.com/apache/superset/issues/35139#issuecomment-3291341878
<!-- Answer --> The 50,000 row limit for Excel exports in Superset is controlled by the `ROW_LIMIT` configuration variable, which defaults to 50,000. To export more rows to Excel, you can increase `ROW_LIMIT` in your `superset_config.py` file. For example: ```python ROW_LIMIT = 100000 # or higher, depending on your needs ``` There isn't a separate setting for Excel exports—this limit applies to both CSV and Excel. Be aware that exporting very large datasets to Excel can cause performance issues or timeouts, depending on your server resources and browser capabilities. Excel itself supports up to 1,048,576 rows per sheet in .xlsx format, but practical limits may be lower due to memory constraints on your server or client machine. More details on this configuration can be found [here](https://github.com/apache/superset/blob/829e4d92d91ceae4b43b1ed3b063ffe45377799c/superset/config.py). If you also want to enable full CSV exports, set the feature flag `ALLOW_FULL_CSV_EXPORT` to `True` in your config, but note this may further impact server performance for very large exports. <!-- Dosu Comment Footer --> *To reply, just mention [@dosu](https://go.dosu.dev/dosubot).* --- <sup>How did I do? [Good](https://app.dosu.dev/response-feedback/8276c67e-f5dc-48dd-9d14-8a3734fb180b?feedback_type=great_response) | [Irrelevant](https://app.dosu.dev/response-feedback/8276c67e-f5dc-48dd-9d14-8a3734fb180b?feedback_type=irrelevant_answer) | [Incorrect](https://app.dosu.dev/response-feedback/8276c67e-f5dc-48dd-9d14-8a3734fb180b?feedback_type=incorrect_sources) | [Verbose](https://app.dosu.dev/response-feedback/8276c67e-f5dc-48dd-9d14-8a3734fb180b?feedback_type=too_verbose) | [Hallucination](https://app.dosu.dev/response-feedback/8276c67e-f5dc-48dd-9d14-8a3734fb180b?feedback_type=hallucination) | [Report 🐛](https://app.dosu.dev/response-feedback/8276c67e-f5dc-48dd-9d14-8a3734fb180b?feedback_type=bug_report) | [Other](https://app.dosu.dev/response-feedback/8276c67e-f5dc-48dd-9d14-8a3734fb180b?feedback_type=other)</sup> [](https://app.dosu.dev/a28d3c7e-a9d3-459e-9fb6-3a6f9ff4f357/ask?utm_source=githu b) [](https://go.dosu.dev/discord-bot) [](https://twitter.com/intent/tweet?text=%40dosu_ai%20helped%20me%20solve%20this%20issue!&url=https%3A//github.com/apache/superset/issues/35139) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org