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.
|