Templates
Tables in Templates
Tables are essential for structured data like line items, pricing breakdowns, and formatted content. Learn how to use tables effectively in your PDF CreateMate templates.
Static Tables
Fixed tables with predetermined rows and columns. Ideal for:
- Contact information layouts
- Fixed pricing structures
- Form-style documents
Creating Static Tables
- In Microsoft Word, go to Insert > Table
- Select the number of rows and columns
- Add content and placeholders
- Format borders, colors, and spacing
- Save and upload to PDF CreateMate
Example: Contact Details Table
| Field | Value |
|---|---|
| Name | {{firstname}} {{lastname}} |
{{email}} |
|
| Phone | {{phone}} |
| Company | {{company}} |
Table Formatting
Borders and Shading
- Use Word's table design tools for consistent styling
- Apply header row formatting for clarity
- Consider alternating row colors for readability
Column Widths
Set fixed column widths for consistent layouts:
- Select the table
- Right-click > Table Properties
- Go to the Column tab
- Set specific widths
Cell Padding
Add breathing room to table content:
- Right-click the table
- Select Table Properties > Options
- Set default cell margins
Totals and Calculations
Summary Rows
Add fixed summary rows at the bottom of a pricing table. These rows always appear — use them for values that are always present on every document:
| Description | Amount |
|---|---|
| Subtotal | {{amount}} |
| Discount | {{discount_amount}} |
| Tax | {{tax_amount}} |
| Total | {{total_amount}} |
Conditional Content in Cells
Conditional blocks work inside table cells to show or hide text within a cell. Use this to handle optional values like discounts or taxes that may be empty for some contacts:
{{discount_amount > 0 ? 'Discount applied' : 'No discount'}}
When discount_amount is 0 or empty, the cell shows the false value (the text after :). Use '' to show nothing instead.
Table Styling Tips
Consistent Formatting
- Use Word's built-in table styles for consistency
- Create a template style guide for your organization
- Keep formatting simple for reliable conversion
Responsive Considerations
- Avoid very wide tables (may not fit on the page)
- Use percentage-based widths where possible
- Test with varying content lengths
Print Optimization
- Add page break controls for long tables
- Consider header row repetition across pages
- Test with realistic data volumes
Common Table Issues
Tables Breaking Incorrectly
Problem: Tables split awkwardly across pages.
Solution:
- Select the table
- Right-click > Table Properties
- Go to Row tab
- Check "Allow row to break across pages" (or uncheck to prevent)
- Enable "Repeat as header row" for the header
Alignment Issues
Problem: Content doesn't align properly in cells.
Solution:
- Select affected cells
- Right-click > Table Properties > Cell
- Set vertical alignment (Top, Center, Bottom)
- Use paragraph alignment for horizontal positioning
Content Overflow
Problem: Text is cut off or cells expand unexpectedly.
Solution:
- Set cell width and height explicitly
- Enable text wrapping within cells
- Use smaller font sizes for dense data
- Consider splitting into multiple columns