Categories

XLSX Multi-Tab Report Pack

Generate one workbook containing multiple report tabs: overview, details, anomalies, and dictionary

Create a workbook report pack with standardized multi-tab layout. - Overview tab: metadata and summary metrics - Detail tab: raw detail records - Anomalies tab: rule-based and optional auto-detected anomalies - Dictionary tab: field definitions for governance and handoff

Example Results

1 examples

Generate Multi-Tab Report Pack

Build a single workbook with Overview/Details/Anomalies/Dictionary tabs

xlsx-multi-tab-report-pack-example1.xlsx View File
View input parameters
{ "packTitle": "Risk Review Report Pack", "overviewJson": "{\n \"owner\": \"Data Governance\",\n \"period\": \"2026-03\",\n \"source\": \"ERP\"\n}", "detailJson": "[\n {\n \"id\": 1,\n \"account\": \"A-100\",\n \"amount\": 1200,\n \"status\": \"ok\"\n },\n {\n \"id\": 2,\n \"account\": \"A-200\",\n \"amount\": -20,\n \"status\": \"refund\"\n },\n {\n \"id\": 3,\n \"account\": \"A-300\",\n \"amount\": 550000,\n \"status\": \"check\"\n }\n]", "anomalyRulesJson": "{\n \"amount\": {\n \"min\": 0,\n \"max\": 100000\n }\n}", "includeAutoAnomaly": true, "autoExtremeThreshold": 200000 }

API Documentation

Request Endpoint

POST /en/api/tools/xlsx-multi-tab-report-pack

Request Parameters

Parameter Name Type Required Description
packTitle text No -
overviewJson textarea Yes -
detailJson textarea Yes -
anomalyRulesJson textarea No -
includeAutoAnomaly checkbox No -
autoExtremeThreshold number No -
dictionaryJson textarea No -

Response Format

{
  "filePath": "/public/processing/randomid.ext",
  "fileName": "output.ext",
  "contentType": "application/octet-stream",
  "size": 1024,
  "metadata": {
    "key": "value"
  },
  "error": "Error message (optional)",
  "message": "Notification message (optional)"
}
File: File

AI MCP Documentation

Add this tool to your MCP server configuration:

{
  "mcpServers": {
    "elysiatools-xlsx-multi-tab-report-pack": {
      "name": "xlsx-multi-tab-report-pack",
      "description": "Generate one workbook containing multiple report tabs: overview, details, anomalies, and dictionary",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=xlsx-multi-tab-report-pack",
      "command": "",
      "args": [],
      "env": {},
      "isActive": true,
      "type": "sse"
    }
  }
}

You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.

If you encounter any issues, please contact us at [email protected]