I got my select working. However, I ran into the next issue.
cstr(PersonNumber) formats my numbers with thousands separators like this: 29.132.512 - this is wrong because the separators don't make sense in this case.
Is it possible to avoid the format?
Greetings
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello again,
I got my select working. However, I ran into the next issue.
cstr(PersonNumber) formats my numbers with thousands separators like this: 29.132.512 - this is wrong because the separators don't make sense in this case.
Is it possible to avoid the format?
Greetings
Anyone?
Hi,
you don't need a function, but PersonNumber & ''.
Cheers Marco
UCanAccess also supports the
Format()function so you could useFormat(PersonNumber, '0').Thanks! But why does UCanAccess format the numbers? Is there an opportunity to simply turn off this behavior?