Help Removing Word Tab Symbol Please

  • Thread starter Thread starter Helen Wheels
  • Start date Start date
H

Helen Wheels

Hi

I'd be really grateful for any help on this.

I'm copying and pasting from Word into an Access table as I have data,
with bullet points, in a table in Word.

The problem I have is that Access is changing the tab space after
bullet points to a small box.

Is there a quick and simple way to change this? I've tried search and
replace by that doesn't work.

Many thanks for any help with this.

Helen
 
The Tab symbol is Chr(9), so try using Replace([MyText], Chr(9), " ")


Hi Douglas

Thank you for your reply, but I've got no idea where I would even
begin with that!

I've got my table in Access - what would I need to do then?

Many thanks

Helen
 
Helen Wheels said:
Hi

I'd be really grateful for any help on this.

I'm copying and pasting from Word into an Access table as I have data,
with bullet points, in a table in Word.

The problem I have is that Access is changing the tab space after
bullet points to a small box.

Is there a quick and simple way to change this? I've tried search and
replace by that doesn't work.

Many thanks for any help with this.

Helen
 
Create a query based on that table. Add all of the fields to the query. For
the field that contains the tabs, use that Replace statement, rather than
simply the name of the field.

--
Doug Steele, Microsoft Access MVP

(no private e-mails, please)


Helen Wheels said:
The Tab symbol is Chr(9), so try using Replace([MyText], Chr(9), " ")


Hi Douglas

Thank you for your reply, but I've got no idea where I would even
begin with that!

I've got my table in Access - what would I need to do then?

Many thanks

Helen
 
Douglas

Thank you - it works like a charm!

I really appreciate your kind help and your shared expertise.

Helen
 

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