How do I find & replace quote marks with the word inch?

G

Guest

My data is filled with quote marks as an abbreviation for the inch
measurement. This creates a problem when I import my data to Quickbooks
which gets confused by the " character and still interpretes it as an end of
text character. In the past this really messed up the import, today
Quickbooks just drops the " from the import. How to I search and replace all
"s with the word inch so I can retain the inch specification in my data. I
have tried surrounding the " character with "s and this does not seem to work.

Thanks
 
G

Guest

Try Cntrl F, which brings up the find window. Choose the Replace tab. Fill
in the find box with ", and the replace box with Inches. Click on find all.
Make sure there aren't any " characters you don't want replaced, if not then
click on replace all.
 
D

David Biddulph

Find and replace works for me, so I guess that you haven't got the standard
" symbol (CHAR(34)).
If your symbol is the nth character in cell A1, you can find out what
character it is with =CODE(A1,MID(A1,n,1)). Other similar symbols include
characters 147 & 148 for left & right "smart quotes".
You can then do =SUBSTITUTE(A1,CHAR(x),"inch").
 

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