A family of Microsoft word processing software products for creating web, email, and print documents.
If you insert a Cross reference to the Paragraph number of a Numbered item, and then IMMEDIATELY run a macro containing the following code, it will insert a space and then a cross reference to the Paragraph text of the Numbered item.
Dim rng As Range
Dim strCode As String
Set rng = Selection.Range
rng.MoveStart wdCharacter, -1
strCode = rng.Fields(1).Code.Text
rng.InsertAfter " "
rng.Collapse wdCollapseEnd
ActiveDocument.Fields.Add rng, wdFieldEmpty, Replace(strCode, "\r", ""), False
rng.MoveEnd wdCharacter, 1
Set rng = rng.Fields(1).Code
rng.MoveEnd wdCharacter, 1
rng.Collapse wdCollapseEnd
rng.Select
I would suggest adding a button to the Quick Access Toolbar to run the macro.