From 3dfa224b4e7547c281ec058e95c1904e8d5eede9 Mon Sep 17 00:00:00 2001 From: Jay Two Date: Thu, 1 Jan 2026 00:46:47 +0900 Subject: [PATCH] update example md --- Example.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/Example.md b/Example.md index 98160b3f..ec29573e 100644 --- a/Example.md +++ b/Example.md @@ -241,6 +241,8 @@ LargeData -r 300000 -c 15 -S 60000 --use-style ## [sax reader](https://github.com/QtExcel/QXlsx/blob/j2doll/sax_reader/TestExcel/extractdata_sax.cpp) +- How to use sax parser that uses less RAM memory. + ```cpp void dump_all_sheets_sax(QXlsx::Document& doc) { @@ -273,4 +275,27 @@ void dump_all_sheets_sax(QXlsx::Document& doc) } ``` +
+ +--- + +## [FormulaDump](https://github.com/QtExcel/QXlsx/tree/master/FormulaDump) + +- Run + - The main executable allows you to dump formulas and values from an XLSX file. Example usage: + ```sh + ./FormulaDump [options] + ``` + +- Options + - `--sheet `: Dump only the specified sheet + - `--all`: Dump all sheets + - `--only-formula`: Output only formula cells + - `--show-value`: Output cell values + - `--eval-formula`: Evaluate formulas if no cached value + - `--max-rows `: Limit the number of rows + - `--max-cols `: Limit the number of columns + - `--print-empty`: Print cells even if the value is empty + +---