Have a function that takes a number as a string, e.g.
x = "123.45"
...then continues to use the len(x) as part of a calculation.
Stepping through it, it returns len(x) as 8. Same if done
from the debug/immediate window:
? len(x)
8
Experimented with a number, e.g.
y = 123.45
? len
6
I'm sorely mystified. Can someone explain how Access arrives
at these results.
Thanks - Bob
x = "123.45"
...then continues to use the len(x) as part of a calculation.
Stepping through it, it returns len(x) as 8. Same if done
from the debug/immediate window:
? len(x)
8
Experimented with a number, e.g.
y = 123.45
? len
6
I'm sorely mystified. Can someone explain how Access arrives
at these results.
Thanks - Bob
Last edited: