Change dot to a comma in .txt file

K

Karin

When importing a .txt-file to access, one of the column contents amounts with
a dot. Ig 253.53 instead of 253,53. How to change this in access? The amount
will not appear at all in the table.
 
S

Stefan Hoffmann

hi Karin,
When importing a .txt-file to access, one of the column contents amounts with
a dot. Ig 253.53 instead of 253,53. How to change this in access? The amount
will not appear at all in the table.
Depending on your settings you may use

CDbl([field]) when you need a number

or

Replace([field], ".", ",") when you need a string.



mfG
--> stefan <--
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top