Import Table convert text to numeric

brendanolear

Active Member
Joined
Apr 26, 2008
Messages
366
I receive an external server feed Table direct to access, the Value field from this feed is in text format. I therefore wish to copy this feed into a new table within DB and convert the value field to numeric. The new table however is overwritten with the text format on each refresh. What is the simplest way to create a new table that replicates the feed table but auto updates the value field from text to numeric? Thanks
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Maybe a query on the lines of this?

SQL:
INSERT INTO 
   [newTable] 
   ([PK], [numberField])
   SELECT 
       [PK], cDbl([textField])
   FROM
       [serverTable] 
   WHERE
       [serverTable].[PK] NOT IN 
           (
               SELECT [PK] FROM [newTable]
           )

Test on a copy of your DB.
 
Upvote 0
you can use the existing table with an extra numeric field.
then run update query to add the str field to the num field.
 
Upvote 0

Forum statistics

Threads
1,215,022
Messages
6,122,721
Members
449,093
Latest member
Mnur

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top