>>1) The Replace() function works in general -- what is it not doing that
>>you
need in this case?<<
As I said in my previous post, in the line SendKeys Term & "{ENTER}", True
the macro sends the Term to the search window of the application and stops
there, it does not send "{ENTER}" and the user has to manually press the
Enter key , if the selected text (the Term) does not include a paragraph
mark, then everything works OK, the macro places the Term and "presses"
Enter.
>>2) Why on earth are you buggering around with SendKeys?<<
LOL!, I need to place the term in the search window of the external
application, but I discovered that a simple Selection.Paste worked, with and
without the paragraph mark, so I changed the code to SendKeys "^V" &
"{ENTER}", True and now everything works.
Thanks!