View Single Post
 
Old 12-16-2018, 03:57 AM
Guessed's Avatar
Guessed Guessed is offline Windows 10 Office 2016
Expert
 
Join Date: Mar 2010
Location: Canberra/Melbourne Australia
Posts: 4,164
Guessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant futureGuessed has a brilliant future
Default

And doing it with styles, it would be like this. The first half wouldn't actually need to run every time. Once the document styles are configured that part wouldn't need to be used again.
Code:
Sub BulletsAndSizer()  
  With ActiveDocument.Styles("Normal").Font
    .Size = 18
    .Name = "Times New Roman"
  End With
  With ActiveDocument.Styles("List Bullet")
    .Font.Size = 18
    .Font.Name = "Times New Roman"
    .ListTemplate.ListLevels(1).Font.Size = 40
  End With
  
  Dim aRng As Range
  Set aRng = Selection.Range
  aRng.Expand Unit:=wdStory
  aRng.Style = "Normal"
  Set aRng = Selection.Range
  aRng.Style = "List Bullet"
End Sub
__________________
Andrew Lockton
Chrysalis Design, Melbourne Australia
Reply With Quote