Answers for "how do i convert text to numeric in vba?"

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 "how do i convert text to numeric in vba?"

Code answers related to "VBA"

Browse Popular Code Answers by Language