Navigate and add a character at specific locations in a document

  • Thread starter Thread starter Gilles Desjardins
  • Start date Start date
G

Gilles Desjardins

Hi everyone, I need some non VBA help (if possible). If VBA is the only
solution could a VBA wizard suggest a bit of code?

Here is my problem: In a LARGE document I have to find all instances of the
word Celsius and insert a degree symbol between the word and the number
(i.e. 24 ° Celsius). ALT + 0176. Find and replace or find does not do the
trick (at least I don't know how). Is this task feasible? Any help is
appreciated.

Gilles Desjardins
 
In what respect is F&R not working for you? You can't search for "Celsius"
and replace with "° Celsius"? If the issue is getting the degree symbol into
the "Replace with" box, you can use Paste (Ctrl+V), Alt+0176, or
Ctrl+Shift+@, Spacebar. Or you can copy "° Celsius" to the Clipboard and use
^c.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.
 
Thank you Suzanne sometimes you can't see the forest because of the tree.
<embarrassed grin>.

Gilles
 
Hi everyone, I need some non VBA help (if possible). If VBA is the only
solution could a VBA wizard suggest a bit of code?

Here is my problem: In a LARGE document I have to find all instances of the
word Celsius and insert a degree symbol between the word and the number
(i.e. 24 ° Celsius). ALT + 0176. Find and replace or find does not do the
trick (at least I don't know how).

Replace
(space)Celsius
with
°(space)Celsius

What am I missing?
 
The fact that this solution has already been proposed and accepted.

--
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA

Email cannot be acknowledged; please post all follow-ups to the newsgroup so
all may benefit.

Hi everyone, I need some non VBA help (if possible). If VBA is the only
solution could a VBA wizard suggest a bit of code?

Here is my problem: In a LARGE document I have to find all instances of the
word Celsius and insert a degree symbol between the word and the number
(i.e. 24 ° Celsius). ALT + 0176. Find and replace or find does not do the
trick (at least I don't know how).

Replace
(space)Celsius
with
°(space)Celsius

What am I missing?
 
Back
Top