Printing Number
This guide shows how to print numeric values into your PDF using n8n.
Step 1 — Prepare your template
In the Eledo editor:
- Add a Text Box (TXT) component
- In Data (expression), enter a field name (for example
Quantity) - Confirm and save the template

tip
Learn more about Text Box: /docs/product/template-editor/components/text-box.mdx
Step 2 — Use the template in n8n
In your n8n workflow:
- Add the Eledo PDF node
- Select your credentials
- Choose your template
- Make sure Input is set to Guided Fields
Step 3 — Add and fill the field
In the Eledo node:
- Click Add Text or Number Field
- Select the field (for example
Quantity) - Enter a numeric value into the Value field

Step 4 — Format the number (recommended)
By default, numbers are converted to text automatically.
This may result in inconsistent formatting.
Use formatting functions in the template to control output.
Examples:
NUM(Quantity, 0, 2)
CURR(Quantity, 0, 2)
CONCAT("$", CURR(Quantity, 0, 2))
tip
Learn more about number formatting:
→ Formatting Numbers
→ Number Functions
Result
When the workflow runs:
- the value is passed to Eledo
- Eledo fills the Text Box
- the formatted number is printed in the document
Next steps
- Printing dates → Printing Date
- Build full workflow → Generate Your First PDF
Was this article helpful?
Yes
No