Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions content/en-US/guides/sheets/features/import-export.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ UniverSheetsAdvancedPreset({
minSheetRowCount?: number;
// The minimum number of columns in the worksheet after import
minSheetColumnCount?: number;
/**
* Export whether to enable server-side formula calculation. When enabled, each export will trigger server-side formula calculation, addressing the following issues:
* 1. Formulas have no default values when opening files in office software like WPS
* 2. Excel does not show formula results unless editing is enabled
* 3. Array formulas with the @ prefix cannot expand calculation results
* Note: The server configuration file needs to set `SSC_SERVER_ENABLED=true`.
*/
enableServerSideComputing?: boolean;
};
})
```
Expand Down Expand Up @@ -127,6 +135,14 @@ univer.registerPlugin(UniverExchangeClientPlugin, {
minSheetRowCount?: number;
// The minimum number of columns in the worksheet after import
minSheetColumnCount?: number;
/**
* Export whether to enable server-side formula calculation. When enabled, each export will trigger server-side formula calculation, addressing the following issues:
* 1. Formulas have no default values when opening files in office software like WPS
* 2. Excel does not show formula results unless editing is enabled
* 3. Array formulas with the @ prefix cannot expand calculation results
* Note: The server configuration file needs to set `SSC_SERVER_ENABLED=true`.
*/
enableServerSideComputing?: boolean;
};
});
```
Expand Down
16 changes: 16 additions & 0 deletions content/zh-CN/guides/sheets/features/import-export.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,14 @@ UniverSheetsAdvancedPreset({
minSheetRowCount?: number;
// 导入后工作表的最小列数
minSheetColumnCount?: number;
/**
* 导出是否启用服务器端公式计算。启用后,每次导出都会触发服务端公式计算。解决如下问题:
* 1. WPS 等办公软件打开文件时公式无默认值
* 2. EXCEL 不启用编辑,无法看到公式计算结果
* 3. 数组公式存在前缀@,导致无法展开计算结果
* 注意,服务端配置文件需要配置 SSC_SERVER_ENABLED=true。
*/
enableServerSideComputing?: boolean;
};
})
```
Expand Down Expand Up @@ -127,6 +135,14 @@ univer.registerPlugin(UniverExchangeClientPlugin, {
minSheetRowCount?: number;
// 导入后工作表的最小列数
minSheetColumnCount?: number;
/**
* 导出是否启用服务器端公式计算。启用后,每次导出都会触发服务端公式计算。解决如下问题:
* 1. WPS 等办公软件打开文件时公式无默认值
* 2. EXCEL 不启用编辑,无法看到公式计算结果
* 3. 数组公式存在前缀@,导致无法展开计算结果
* 注意,服务端配置文件需要配置 SSC_SERVER_ENABLED=true。
*/
enableServerSideComputing?: boolean;
};
});
```
Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@univerjs-site/docs",
"type": "module",
"version": "0.8.2",
"version": "0.8.3",
"private": true,
"packageManager": "pnpm@10.12.1",
"scripts": {
Expand All @@ -18,12 +18,12 @@
"@feelback/react": "^0.3.4",
"@lit/react": "^1.0.7",
"@univerjs/icons": "^0.4.4",
"@univerjs/presets": "0.8.2",
"@univerjs/sheets-crosshair-highlight": "0.8.2",
"@univerjs/sheets-formula-ui": "0.8.2",
"@univerjs/themes": "0.8.2",
"@univerjs/uniscript": "0.8.2",
"@univerjs/watermark": "0.8.2",
"@univerjs/presets": "0.8.3",
"@univerjs/sheets-crosshair-highlight": "0.8.3",
"@univerjs/sheets-formula-ui": "0.8.3",
"@univerjs/themes": "0.8.3",
"@univerjs/uniscript": "0.8.3",
"@univerjs/watermark": "0.8.3",
"clsx": "^2.1.1",
"lit": "^3.3.0",
"next": "15.3.3",
Expand Down
Loading
Loading