Overview
This node, named PlusNode, performs a basic arithmetic operation of adding two numbers. It is useful in scenarios where you need to sum two numeric inputs within an n8n workflow, such as calculating totals, aggregating values, or performing simple mathematical operations on data streams.
Use Case Examples
- Adding two numbers provided as inputs to produce their sum.
- Using the node in a workflow to calculate combined values from different data sources.
Properties
| Name | Meaning |
|---|---|
| Number1 | The first number to be added. |
| Number2 | The second number to be added. |
Output
JSON
sum- The result of adding Number1 and Number2.
Troubleshooting
- If input values are not numbers or missing, the node may throw an error. Ensure that both Number1 and Number2 are provided and are valid numbers.
- If the node is set to continue on fail, it will output an error object along with the original input for the failed item, which helps in debugging.