Importing a spreadsheet but need to find and replace cells first

T

Tiffany

I have a spreadsheet that I need to open and replace all commas with a space,
then import into my database.
Is there a way I can import the spreadsheet and somehow replace the commas
before it gets imported into the table??
 
P

pietlinden

I have a spreadsheet that I need to open and replace all commas with a space,
then import into my database.
Is there a way I can import the spreadsheet and somehow replace the commas
before it gets imported into the table??

create a query against the table, do your text manipulations in new
expressions and then import those expressions.
TestReplace: Replace([Name],","," ")
....replaces all instances of [comma] with [space]
 

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