J
Jeff Boyce
A potential problem is that if you have, say, "001234567" as a number, you
actually have "1234567", and the zeros are not there to convert to text.
One possible approach would be to add a new field to the table, of type
text, then use a query to append the number data to the text field. You'd
need to use formatting to show "1234567" as "001234567", and you might need
to use CStr() to convert that to a text data type before appending.
Good luck!
Regards
Jeff Boyce
Microsoft Office/Access MVP
actually have "1234567", and the zeros are not there to convert to text.
One possible approach would be to add a new field to the table, of type
text, then use a query to append the number data to the text field. You'd
need to use formatting to show "1234567" as "001234567", and you might need
to use CStr() to convert that to a text data type before appending.
Good luck!
Regards
Jeff Boyce
Microsoft Office/Access MVP