Thread: [Solved] VBA macros
View Single Post
 
Old 07-18-2011, 10:46 PM
tays01s tays01s is offline Mac OS X Office for Mac 2011
Novice
 
Join Date: Jul 2011
Posts: 15
tays01s is on a distinguished road
Default VBA macros

Just started trialling 2011. Did a simple macro where I highlighted all then did some find/replace all operations. However, the latter did not occur or appear in the VBA code:
Sub Email()
'
' Email Macro
'
'
Selection.WholeStory
ActiveWindow.DocumentMapPercentWidth = 17
Selection.WholeStory
Selection.WholeStory
Selection.WholeStory
Selection.ParagraphFormat.Alignment = wdAlignParagraphJustify
Selection.ParagraphFormat.Alignment = wdAlignParagraphJustify
Selection.Font.Size = 9
Selection.Font.Name = "Arial"
End Sub

Why???
Reply With Quote