How To: Create Custom Table Layouts
Build custom table structures with merged cells, colspan, and row control.
Problem
Solution 1: Merge Cells Horizontally
<!--{{!
<lineitems>
<listname>opportunitylineitems</listname>
<column>PricebookEntry.Product2.name</column>
<column prefix="$" mergenext="true"></column>
<column format-number="#,###.##">unitprice</column>
</lineitems>
}}-->Solution 2: Column Spanning
<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>Solution 3: Custom Row Breaks
Tips
PreviousHow To: Format Line Items Without TablesNextHow To: Add Custom Headers and Footers to Tables
Last updated
Was this helpful?

