Answers for "vba string to integer"

VBA
2

vba string to integer

MsgBox CInt("7,55")     ' Integer   -> 8
MsgBox CLng("7,55")     ' Long      -> 8
MsgBox CDbl("7,55")     ' Double    -> 7,55
Posted by: Guest on February-05-2021

Code answers related to "VBA"

Browse Popular Code Answers by Language