WordMacroFilter
May 19, 2009 9:53 PM Subscribe
WordMacroFilter: So my new boss is great but he has some crazy grammar and wordsmithing quirks. I received a list (no joke) of the edits he wants to see of documents that come to his desk (use affect instead of impact, effect instead of impacts, etc). I'd like to create a Microsoft Word Macro that will automate the task.
I don't think that find and replace will work to just sub out the word. Instead, I'd like it to find all of the quirks and highlight them. I recorded a macro today (not coding, but by following me doing the find and highlight quirk by quirk), but it doesn't loop correctly when I run it and it's hard to update. I'm hoping that someone already has something like this or there is some commercial software. Thanks!
posted by roundrock to work & money (7 answers total) 3 users marked this as a favorite
For example: to highlight all occurrences of the words "impacts", "impact", "spend" and "proactive", you'd open your document with Writer, choose Find and Replace from the Edit menu, click the More Options button to expose the Regular Expressions checkbox, and check it; then, in the Find box you'd type
impacts|impact|spend|proactive
and click Find All.
This would actually work quite well for you, since Writer's Find box is actually a dropdown menu that allows you to re-use recent search terms without having to type them all in again.
posted by flabdablet at 10:01 PM on May 19, 2009