Convert text number to decimal number

  • Thread starter Thread starter Pete Provencher
  • Start date Start date
P

Pete Provencher

I have gotten some numbers from a mainframe that are decimal numbers but
they don't have the decimal mark. For example:

220
1450
16

I need to place the decimal point so that the numbers are as follows:

2.20
14.50
..16

I need to create an update query that will update the filed but I can't
figure out how to do this. Any help will be appreciated.


Pete Provencher
 
Thanks. I just wish I had asked earlier. It would have saved me lots of
time.

Pete Provencher
Phobos said:
UPDATE tblNumbers SET fld = [fld]/100;


P


Pete Provencher said:
I have gotten some numbers from a mainframe that are decimal numbers but
they don't have the decimal mark. For example:

220
1450
16

I need to place the decimal point so that the numbers are as follows:

2.20
14.50
.16

I need to create an update query that will update the filed but I can't
figure out how to do this. Any help will be appreciated.


Pete Provencher
 
Back
Top