View Single Post
 
Old 02-13-2015, 05:22 AM
macropod's Avatar
macropod macropod is offline Windows 7 64bit Office 2010 32bit
Administrator
 
Join Date: Dec 2010
Location: Canberra, Australia
Posts: 22,363
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

Here's a couple of macros you could assign to keyboard shortcuts to do the grouping/ungrouping and applying the 'square' wrap format in one go:
Code:
Sub ReGroup()
With Selection.ShapeRange
  .Group.Select
  .WrapFormat.Type = wdWrapSquare
End With
End Sub
 
Sub UnGroup()
With Selection.ShapeRange
  .UnGroup.Select
  .WrapFormat.Type = wdWrapSquare
End With
End Sub
__________________
Cheers,
Paul Edstein
[Fmr MS MVP - Word]
Reply With Quote