Vaibhs11 wrote:

There are three blocks that you could use:

(round (...)) // rounds to nearest integer: 1.75 => 2 // 1.25 => 1
([floor v] of (...)) // rounds to nearest integer below the number: 1.75 => 1 // 1.25 => 1
([ceiling v] of (...)) // rounds to the nearest integer above the number: 1.75 => 2 // 1.25 => 2

You could also use the floor function just to remove the decimal part of a number.
thank you that worked