I have a "number" field which is 12 characters long, called CID held as a string.
In the first record it has the value 360126474291
Basically, I wanted to do nextCID = val(lastCID) + 167, but obviously
o) I get an overflow, so I can't.
What can I expect if I use nextCID = CDbl(lastCID) + 167 ?
Will it behave as though I'm adding 64 bit integers?
Aidan
In the first record it has the value 360126474291
Basically, I wanted to do nextCID = val(lastCID) + 167, but obviously
What can I expect if I use nextCID = CDbl(lastCID) + 167 ?
Will it behave as though I'm adding 64 bit integers?
Aidan