TRUNC Function -- Syntax and Examples

TRUNC(number[, n])

trunc("125.8588",2)

returns the value "125.85"

trunc("125.8588")

returns the value "125"

Value = trunc("125.8588")

assigns the value "125" to the variable Value

Next