> For the complete documentation index, see [llms.txt](https://help.sdocs.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.sdocs.com/sdocs/advanced-template-logic/template-attributes/template-attributes-how-to-guides/how-to-create-custom-table-layouts.md).

# How To: Create Custom Table Layouts

Use table layout attributes when the default row-and-column output is not enough.

### Problem

You need tables with merged cells, custom column spans, or specific row structures.

### Solution 1: Merge Cells Horizontally

**Currency Symbol + Amount:**

```
<!--{{!
<lineitems>
<listname>opportunitylineitems</listname>
<column>PricebookEntry.Product2.name</column>
<column prefix="$" mergenext="true"></column>
<column format-number="#,###.##">unitprice</column>
</lineitems>
}}-->
```

**Result:** `$` and `12.99` render in one merged cell as `$12.99`.

### Solution 2: Column Spanning

**Header Spanning Multiple Columns:**

```
<thead>
  <tr>
    <th colspan="3">Product Information</th>
    <th colspan="2">Pricing</th>
  </tr>
  <tr>
    <th>Name</th>
    <th>Code</th>
    <th>Description</th>
    <th>Unit Price</th>
    <th>Total</th>
  </tr>
</thead>
```

**In Line Items:**

```
<!--{{!
<lineitems>
<listname>opportunitylineitems</listname>
<column colspan="2">PricebookEntry.Product2.name</column>
<column prefix="$" format-number="#,###.##">unitprice</column>
</lineitems>
}}-->
```

### Solution 3: Custom Row Breaks

**3 Labels Per Row:**

```
<table>
<!--{{!
<lineitems>
<listname>contacts</listname>
<column newrow="3">Name<br>MailingStreet<br>MailingCity, MailingState MailingPostalCode</column>
</lineitems>
}}-->
</table>
```

**Result:** Three labels render per row.

**New Row for Each Record:**

```
<!--{{!
<lineitems>
<listname>opportunitylineitems</listname>
<column newrow="true">PricebookEntry.Product2.name</column>
<column>Description</column>
<column>UnitPrice</column>
</lineitems>
}}-->
```

### Tips

* `mergenext="true"` merges a cell with the cell to its right.
* `colspan="n"` makes a cell span `n` columns.
* `newrow="3"` starts a new row after every third record.
* `newrow="true"` starts a new row for each record.
* `mergenext` does not work with group-by output.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.sdocs.com/sdocs/advanced-template-logic/template-attributes/template-attributes-how-to-guides/how-to-create-custom-table-layouts.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
