CSNG Function ---------------------------------------------------------------------------- Action Converts a numeric expression to a single-precision value. Syntax CSNG( numeric-expression) Remarks The CSNG function has the same effect as assigning numeric-expression to a single-precision variable. CSNG rounds the value, if necessary, before converting it. See Also CCUR, CDBL, CINT, CLNG Example The following example shows how CSNG rounds before converting the value. A#=975.3421115# B#=975.3421555# PRINT A#; CSNG(A#); B#; CSNG(B#) Output 975.3421115 975.3421 975.3421555 975.3422