View Single Post
 
Old 11-16-2016, 03:34 PM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,343
macropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond reputemacropod has a reputation beyond repute
Default

Quote:
Originally Posted by steve8778 View Post
Hi, I am very new to this. I have to type a lot of letters & numbers in parentheses and it's cumbersome to have to do it manually.....

a3B1 ---> (a)(3)(B)(1)
Your description suggests you're creating multi-level lists, for which you should be using Word's multi-level list numbering tools and properly-defined paragraph Styles to associate with them. With that approach, your paragraphs can be numbered automatically (parentheses included) and, should you need to insert/delete/promote/demote one, all the numbering will auto-adjust.

If you're wedded to your present approach, you could use some wildcard Find/Replace expressions to apply the parentheses. For example:
Find = ([a-z])([0-9])([A-Z])([0-9])
Replace = (\1)(\2)(\3)(\4)
would changed any string like a3B1 to (a)(3)(B)(1) - throughout your document or for just a selected range. No macros required.
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote