Numbers Operation V2
Performs a basic arithmetic operation on a value. Supports floating-point inputs, custom decimal places and returns a string result. An enhanced version of Numbers Operation that handles non-integer numbers.
What it does
- Takes an input value and applies addition, subtraction, multiplication or division with a given number.
- Rounds the result to the specified number of decimal places.
- Returns the computed result as a string.
Notes
- Unlike V1, this version supports floating-point numbers as both input value and operand.
- Set Decimal Places to
0for integer-only results. Enter a space to keep all decimal places without rounding. - Division by zero is not explicitly handled and may return unexpected results.
Inputs
| Name | Type | Description |
|---|---|---|
| Value | String | The input value to operate on |
| Number | Number | The operand (what to add/subtract/multiply/divide by) |
| Operation | String | One of: addition, subtraction, multiplication, division |
| Decimal Places | String | Number of decimal places to round to. Use 0 for integers, space for no rounding |
Outputs
| Name | Type | Description |
|---|---|---|
| Value | String | The computed result |