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 0 for 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

NameTypeDescription
ValueStringThe input value to operate on
NumberNumberThe operand (what to add/subtract/multiply/divide by)
OperationStringOne of: addition, subtraction, multiplication, division
Decimal PlacesStringNumber of decimal places to round to. Use 0 for integers, space for no rounding

Outputs

NameTypeDescription
ValueStringThe computed result