Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
I get: 12469134,7934568
Expected: 12469134,793456[b][COLOR=#EF2929]7[/color][/b]8
Dim x As Double
Dim y As Double
Dim z As Double
x = "123456789.123456789" 'Store Input from user
y = "123456.67" 'Store Input from user
z = x + y
Debug.Print CDec(z)
[blue] Dim x as Variant
Dim y As Variant
Dim z As Variant
x = CDec("123456789.123456789") 'Store Input from user
y = CDec("123456.67") 'Store Input from user
z = x + y
Debug.Print z[/blue]
Dim A
Dim B As Variant