View Single Post
Old 02-21-2023, 01:38 PM   #2
Badas
Junior Member
Badas began at the beginning.
 
Posts: 8
Karma: 10
Join Date: Apr 2021
Device: Pocketbook Ultra
The best way is to change List Item to Text in docx. In Word I am using small macros:

Sub ListToText
Dim iCount As Integer, iParaCount As Integer, iListParaCount As Integer
Dim lp As Paragraph
iParaCount = ActiveDocument.Paragraphs.Count
iListParaCount = ActiveDocument.ListParagraphs.Count
For Each lp In ActiveDocument.ListParagraphs
lp.Range.ListFormat.ConvertNumbersToText
iCount = iCount + 1
Next lp
MsgBox "Para count is" & iParaCount & vbCr _
& " List Para is " & iListParaCount & vbCr _
& " Changed " & iCount & " Para Lists."
End Sub

But this is in World. How in LO... I dont know.

Last edited by Badas; 02-21-2023 at 01:41 PM.
Badas is offline   Reply With Quote