Jul 03 2022 09:55 AM
I am able to search for words and symbols on the word application but there is a particular symbol that does not come up with results when I search. When I search for this symbol with words attached to it, it doesn't recognize it, neither word or the symbol. But when I search for the word without the symbol, the browser ignores that the symbol is in the text. I need assistance with this issue Please.
The symbol is: ¬
Jul 03 2022 11:23 PM - edited Jul 03 2022 11:44 PM
Jul 03 2022 11:23 PM - edited Jul 03 2022 11:44 PM
WIth the selection in the Find what control, hold down the ALT key and type 0172 on the numeric keypad which will insert ¬ into that control. If you want to search for the symbol plus the word following it, insert the word after the ¬
If you want to delete the ¬ from before whatever words it appears before, run a macro containing the following code:
With ActiveDocument.Range
.Text = Replace(.Text, Chr(172), "")
End With
If that does not help can you provide a copy of document that contains the symbol and provide details of how you want the document changed.
Jul 03 2022 11:38 PM
Jul 03 2022 11:48 PM
Lett me give a example. Take a look in the left side, and se what the browser can recognize and not (Inga matchningar=No results)
Jul 03 2022 11:54 PM
@Harald_Bergman Did you try using the macro that I included in my response.
If you want the ¬ replaced by a space, use
With ActiveDocument.Range
.Text = Replace(.Text, Chr(172), " ")
End With
with a space between the quotation marks
If you need more assistance, can you provide a copy of the document.
Jul 04 2022 12:58 AM
Jul 04 2022 01:06 AM