View Single Post
 
Old 02-26-2024, 12:56 PM
Jakov93 Jakov93 is offline Windows 10 Office 2010
Advanced Beginner
 
Join Date: Jul 2021
Posts: 51
Jakov93 is on a distinguished road
Default Change the Lists Indentation for All Lists

Quote:
Originally Posted by gmaxey View Post
Code:
Sub ScratchMacro()
'A basic Word Macro coded by Gregory K. Maxey
Dim colList As ListParagraphs
Dim lngIndex As Long
  Set colList = ActiveDocument.Range.ListParagraphs
  For lngIndex = 1 To colList.Count
    colList(lngIndex).Range.Font.Name = "Times New Roman"
  Next
lbl_Exit:
  Exit Sub
End Sub

Dear gmaxey,
I want to follow the list number or bullet with space, not a tab for all lsits.
Thank you
Reply With Quote