Search for numbered / bulleted list in a document

A

andreas

Dear Experts:

I cannot find a way how to search for bulleted or numbered lists in a
Microsoft Word document (using the 'Find' dialog box). Could somebody
give me a hint how to do that?

Maybe it can only be achieved writing a macro.

Help is much appreciated. Thank you very much in advance. Regards,
Andreas
 
T

ToddC

I am also unaware of how to do this through the user interface. The macro to
select each numbered/bulleted section is simple and "might" be easily
modified for what you are trying to do.

Sub ListItemCount()
numlists = ActiveDocument.Lists.Count
For i = 1 To numlists
ActiveDocument.Lists(i).Range.Select
MsgBox "Count of List " + CStr(i) + ": " & _
CStr(ActiveDocument.Lists(i).CountNumberedItems)
Next i
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top