עזרה עבור LibreOfficeDev 7.4
Converts any string or numeric expression to data type Single.
CSng (Expression)
Single
\
Sub ExampleCSNG
MsgBox CDbl(1234.5678)
MsgBox CInt(1234.5678)
MsgBox CLng(1234.5678)
MsgBox CSng(1234.5678)
End Sub