Syntax
| SQL.NumberValue(NumValue[, Decimals])
| ||||||
---|---|---|---|---|---|---|---|
Description
| Formats a numeric value in SQL text, including parameterizable decimals.
| ||||||
See Also
| |||||||
Example
| Sub Main() MsgBox SQL.NumValue(123.45678, 3) ' ROUND(123.45678,3) MsgBox SQL.NumValue(123.45678) ' 123.45678 End Sub | ||||||