Paste as grid, not as table

Hi, all.

I would like to be able to paste any data in tabular form (Excel, Word, Markdown) into Coda as a GRID.

Right now it can only paste, if at all, as a table.

Thank you!

If you create the grid first, and then paste into the grid it works.

1 Like

Coda team, are you going to address this? It has been well over a year since your launch of grids, but this feature is incomplete. We need to be able to paste a text-based table into Coda and have it land as a simple grid, not a table.

1 Like

It also affects pasting documents that include multiple grids, each interpreted as a table. In a sizeable document, the effort required is too great. I do this.

Using Coda MCP (in beta), you can ask an agent, such as Claude Code, to follow a specific workflow rather than a simple "paste.

Since the Coda API (and by extension MCP) cannot explicitly create a “Simple Grid” object, the solution is to populate an existing grid object which can also exist as a reusable canvas element in some far-off document.

The Workaround Workflow

  1. One-time Prep: Create a blank “Simple Table” (Grid) in your doc that is large enough for your typical data (or just add rows/columns manually as needed).

  2. The Process:

  • Provide your tabular data (CSV, Markdown, Excel copy) to the Agent.
  • Ask the Agent: “Fill the simple grid on [Page Name] with this data.”
  • The Agent will:
    1. Read the page using page_read with contentTypes to include: [“pageContentRich”]
    2. Identify the “Simple Table” structure in the rich text JSON (which is distinct from DB Tables).
    3. Parse your input data.
    4. Use content_modify to inject the values into the specific cell nodes of the Simple Table.

This bypasses the Coda clipboard handler, which aggressively converts pasted tables into Database Tables.

1 Like