Extra Characters When Pasting From MS Access

  • Thread starter Thread starter Bob_The_Borg \(removethis\)
  • Start date Start date
B

Bob_The_Borg \(removethis\)

Has anyone encountered extra characters in an Excel sheet
after pasting from MS Access?

We're getting a single quote character (') to the left of
every piece of data in every field when we paste a table
from MS Access 2K to MS Excel 2K. It's only visible in
the bar at the top when you click on the cell. And I
tried a find and replace but it cannot find it. Wierd!


Any idears?
 
Hi
try the following macro to remove these apostrophes:
sub remove_it()
dim rng as range
set rng = selection
rng.value=rng.value
end sub
 
Thanks Frank, I'll give it a try.



-----Original Message-----
Hi
try the following macro to remove these apostrophes:
sub remove_it()
dim rng as range
set rng = selection
rng.value=rng.value
end sub

--
Regards
Frank Kabel
Frankfurt, Germany



.
 

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