TRUECALC
MCP

structure:unmergeCells

Splits previously merged cells back apart.

Parameters

NameTypeRequiredDescription
sheetstringyes
a1stringyes

Returns

Nothing beyond the standard MCP success envelope.

Schema

Request payload, as JSON Schema:

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Payload",
  "description": "The single cell, anchor or interior whose covering merge should be dissolved.",
  "type": "object",
  "properties": {
    "sheet": {
      "type": "string"
    },
    "a1": {
      "type": "string"
    }
  },
  "required": [
    "sheet",
    "a1"
  ]
}

On this page