Hello im wrestling with some values and i don't get it fixed. What i want is the following:
changed into:
but i don't get it to work.
I tried working with Ccur() and the Val() functions but the results are all wrong.
I got errors or i got values like:
833235433555332.63
833235433555332,6332 <- with a comma instead of the dot
Please help me out?
Code:
Dim Curarray(20) As Currency
Curarray(0) = 833235433555332.6332@
Code:
Dim Curarray(20) As Currency
Dim pp as string
pp = "833235433555332.6332"
Curarray(0) = pp
I tried working with Ccur() and the Val() functions but the results are all wrong.
I got errors or i got values like:
833235433555332.63
833235433555332,6332 <- with a comma instead of the dot
Please help me out?