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
| Name | Type | Description |
|---|---|---|
| Number | Number | The number to compare |
| Step | Number | The step to calculate |
Outputs
| Name | Type | Description |
|---|---|---|
| Result Number | Number | Generated result number |
Notes
- The result is based on integer step boundaries (the number divided by the step, rounded down).