Importing lists into Access

  • Thread starter Thread starter Alex Buiel
  • Start date Start date
A

Alex Buiel

I have a huge Word table that needs to be imported into Access. The main
problem is that one of the fields has lists that were created using the
Enter key, which Access would read as a new record. I thought I could work
around it by replacing the paragraph symbol with a different alpha symbol
and then put it back when it was imported. I've discovered that the problem
with that solution is that under Access search and replace, there isn't any
option to insert the ¶ formatting symbol to recreate the list.

Does anyone know of a workaround for this situation?

Thanks,
Alex
 
Alex said:
I have a huge Word table that needs to be imported into Access. The main
problem is that one of the fields has lists that were created using the
Enter key, which Access would read as a new record. I thought I could work
around it by replacing the paragraph symbol with a different alpha symbol
and then put it back when it was imported. I've discovered that the problem
with that solution is that under Access search and replace, there isn't any
option to insert the ¶ formatting symbol to recreate the list.

Does anyone know of a workaround for this situation?

Thanks,
Alex

Just a guess here but you might try importing into Excel first
make adjustments there and then import into Access. Not a good
solution if this is an everyday thing but if it's a one off
procedure it might work for you.

gls858
 
gls858 said:
Just a guess here but you might try importing into Excel first
make adjustments there and then import into Access. Not a good
solution if this is an everyday thing but if it's a one off
procedure it might work for you.

gls858

Instead of importing which after looking doesn't seem to be possible.
Just try cutting and pasting the word doc into Excel. It worked on a small
table don't know for sure what will happen on a "huge" table.

gls858
 
Thanks, it was worth a try. Unfortunately, the returns forced each list line
into a new row in Excel, which pretty much replicated my original problem
when I imported it.

Alex
 
Use (Chr$(13) & Chr$(10) in the Replace function.

Replace ([YourFieldName],"OldCharacter",(Chr$(13) & Chr$(10) )
 

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

Back
Top