Get Next Step Number

Calculates the next value in a step sequence for a given number. Use it to advance a value to the next step within a flow.

What it does

  • Divides the number by the step and rounds down to the nearest lower step boundary.
  • Returns the value that follows that lower step.

Inputs

NameTypeDescription
NumberNumberThe number to compare
StepNumberThe step to calculate

Outputs

NameTypeDescription
Result NumberNumberGenerated result number

Notes

  • The result is based on integer step boundaries (the number divided by the step, rounded down).