Categories

XLSX KPI Dashboard Generator

Generate a KPI dashboard workbook with metric cards, trend table, and conditional warning formatting

Build KPI dashboard workbooks for operational reviews. - KPI summary cards (value/target/status) - Trend table sheet from JSON time series - Warning/alert conditional formatting for fast risk scanning - Includes KPI evaluation metadata

Example Results

1 examples

Generate KPI Dashboard Pack

Create KPI metric cards and trend table with warning-level conditional formatting

xlsx-kpi-dashboard-generator-example1.xlsx View File
View input parameters
{ "kpisJson": "[\n {\n \"name\": \"Revenue\",\n \"value\": 122000,\n \"target\": 110000,\n \"direction\": \"higher\",\n \"unit\": \"$\"\n },\n {\n \"name\": \"Gross Margin\",\n \"value\": 34,\n \"target\": 38,\n \"direction\": \"higher\",\n \"unit\": \"%\"\n },\n {\n \"name\": \"CAC\",\n \"value\": 54,\n \"target\": 48,\n \"direction\": \"lower\",\n \"unit\": \"$\"\n },\n {\n \"name\": \"Churn\",\n \"value\": 2.1,\n \"target\": 2.5,\n \"direction\": \"lower\",\n \"unit\": \"%\"\n }\n]", "trendsJson": "[\n {\n \"period\": \"2026-01\",\n \"Revenue\": 98000,\n \"Gross Margin\": 33,\n \"CAC\": 50,\n \"Churn\": 2.9\n },\n {\n \"period\": \"2026-02\",\n \"Revenue\": 105000,\n \"Gross Margin\": 35,\n \"CAC\": 52,\n \"Churn\": 2.5\n },\n {\n \"period\": \"2026-03\",\n \"Revenue\": 122000,\n \"Gross Margin\": 34,\n \"CAC\": 54,\n \"Churn\": 2.1\n }\n]", "title": "Monthly KPI Dashboard", "warningTolerancePercent": 10, "includeConditional": true }

API Documentation

Request Endpoint

POST /en/api/tools/xlsx-kpi-dashboard-generator

Request Parameters

Parameter Name Type Required Description
kpisJson textarea Yes -
trendsJson textarea Yes -
title text No -
warningTolerancePercent number No -
includeConditional checkbox 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-kpi-dashboard-generator": {
      "name": "xlsx-kpi-dashboard-generator",
      "description": "Generate a KPI dashboard workbook with metric cards, trend table, and conditional warning formatting",
      "baseUrl": "https://elysiatools.com/mcp/sse?toolId=xlsx-kpi-dashboard-generator",
      "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]