Accessing numbering from a macro

J

Jorge

Hello

Is it possible to access the numbering of a heading from a VBA macro? I've
already tried but the "Selection" object ignores the numbering.

Cheers

Jorge
 
J

Jezebel

Explore the ListFormat object --- .Value gives you the numeric value of the
number; .ListString gives you the representation.

Eg

Selection.Range.ListFormat.ListString
 
Top