From: Duncan Akuma on
Hi all,

I am trying to figure out a way to disassociate a multilevel list from
Heading 1, Heading 2, etc in Word 07. I have been trying to deal with this
both through styles and also through multilevel list but cannot find a way to
break the connection between the heading and the multilevel list. Its as
though once the connection is made it cannot be undone, which is absurd.
There must be a way but I have been all over the internet today searching for
how its done with no joy. Can anyone help me? I'll laugh if its one of those
issues where the answer is staring me right in the face.

cheers,
duncan
From: Peter T. Daniels on
What results are you getting now, and what results do you want to get
instead?

On Mar 29, 7:55 pm, Duncan Akuma
<DuncanAk...(a)discussions.microsoft.com> wrote:
> Hi all,
>
> I am trying to figure out a way to disassociate a multilevel list from
> Heading 1, Heading 2, etc in Word 07. I have been trying to deal with this
> both through styles and also through multilevel list but cannot find a way to
> break the connection between the heading and the multilevel list. Its as
> though once the connection is made it cannot be undone, which is absurd.
> There must be a way but I have been all over the internet today searching for
> how its done with no joy. Can anyone help me? I'll laugh if its one of those
> issues where the answer is staring me right in the face.
>
> cheers,
> duncan

From: Stefan Blom on
Place the insertion point in the first Heading 1 paragraph of your document.
On the Home tab, click Multilevel List, and then click Define New Multilevel
List. If necessary, click More to see all options of the dialog box. For
each level of the list, choose "(no style)" for "Link level to style." When
you are done, click OK to close the dialog box.

Note that after you have done the above, number formatting may still be
present as direct formatting in the text. To get rid of it, select the text
and press Ctrl+Q (which resets paragraph formatting to that of the
underlying style).

Alternatively, clear the numbering from your headings by using this macro:

Sub ClearNumberingFromHeadings()
Dim i As Long
For i = 1 To 9
ActiveDocument.Styles("Heading " & CStr(i)) _
.LinkToListTemplate ListTemplate:= _
Nothing
Next i
End Sub

If you need installation instructions, see
http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP



"Duncan Akuma" <DuncanAkuma(a)discussions.microsoft.com> wrote in message
news:2A05FDC9-2329-428F-9A5F-A2D772500BDE(a)microsoft.com...
> Hi all,
>
> I am trying to figure out a way to disassociate a multilevel list from
> Heading 1, Heading 2, etc in Word 07. I have been trying to deal with this
> both through styles and also through multilevel list but cannot find a way
> to
> break the connection between the heading and the multilevel list. Its as
> though once the connection is made it cannot be undone, which is absurd.
> There must be a way but I have been all over the internet today searching
> for
> how its done with no joy. Can anyone help me? I'll laugh if its one of
> those
> issues where the answer is staring me right in the face.
>
> cheers,
> duncan