Skip to main content

floor

Round a number down to the nearest integer

Written by Holly Conrad Smith

Use this when you want to always round a number down within a flow, for example conservatively estimating capacity.

How to:

  1. Feed in a number

  2. The result is the nearest integer, rounded down.

Example:

  • 2.5 -> 2

  • 3.75 -> 3

  • 5.2 -> 5

Did this answer your question?