
Signature
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
Hi Suzanne,
Thanks for your answer.
> See http://sbarnhill.mvps.org/WordFAQs/CombineXrefs.htm for general
> principles, but note that, if the brackets are part of the number format, it
> may not be possible to put the range within a single set of brackets.
Yes, the brakets are part of the number format :(
How could I solve it to get the references as I would like?
thanks for you help,
Regards,
Antonio.
> > Hello!
> >
[quoted text clipped - 16 lines]
> > Best regards,
> > Antonio.
Suzanne S. Barnhill - 27 Mar 2009 15:26 GMT
That may well require a macro, which I am unable to supply. Perhaps someone
else can help?

Signature
Suzanne S. Barnhill
Microsoft MVP (Word)
Words into Type
Fairhope, Alabama USA
http://word.mvps.org
> Hi Suzanne,
>
[quoted text clipped - 34 lines]
>> > Best regards,
>> > Antonio.
Doug Robbins - Word MVP on news.microsoft.com - 27 Mar 2009 23:43 GMT
If you do not need the references to be hyperlinked to their source, which
they could not be in that format anyway, you run the following macro to
unlink them and replace ],[ with a ,
Dim af As Field
For Each af In ActiveDocument.Fields
If af.Type = wdFieldRef Then
af.Unlink
End If
Next af
With Selection
.HomeKey wdStory
.Find.Execute FindText:="],[", MatchWildcards:=False, _
Format:=ClearFormatting, ReplaceWith:=",", Replace:=wdReplaceAll
End With

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
> Hi Suzanne,
>
[quoted text clipped - 34 lines]
>> > Best regards,
>> > Antonio.