Round number to integer value

(Aleksey) #1

Hi!

How can i round number to integer value using flowxo built-in function?

For example round(json.data.temp)
round (5.5) = 5

(Daniel Beckett) #2

Hi @dazfx

You can use the Number service to format the number. For example:

That would give an output of 6 since numbers are always rounded to the nearest Integer with .5 always rounding upwards.