C
Curtis Stevens
I have this code for the afterupdate event on a text box that has data in it.
Me.Text732 = Replace(Abs(Val([Text732])), ".", "")
When I past this data 0000272400123456 into the text box, it gets rid of the
0000, becomes 272400123456
But if I past this kind of number 4223697600059898, it turns it into this
42236976000599E+15
If I take the coding away and past the 4223697600059898 number, it stays the
same and doesn't get changed to the +15.
Any suggestions or changes to code to fix this?
Thanks!
Curtis
Me.Text732 = Replace(Abs(Val([Text732])), ".", "")
When I past this data 0000272400123456 into the text box, it gets rid of the
0000, becomes 272400123456
But if I past this kind of number 4223697600059898, it turns it into this
42236976000599E+15
If I take the coding away and past the 4223697600059898 number, it stays the
same and doesn't get changed to the +15.
Any suggestions or changes to code to fix this?
Thanks!
Curtis