format("125.8588",5,2)
returns the value " 125.86"
format("125.8588",,0)
returns the value "126"
Value = format("125.8588",,0)
assigns the value "126" to the variable Value
Next