FORMAT Function -- Syntax and Examples

FORMAT(number[, [before][, [after][, expp][, expt]]]])

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