Quote:
Originally Posted by silverspr
So am I back to your original recommendation to reference the table and cell of the source content control...arghhh.
I do want the cross reference to update when changed at the "source" control.
|
The simplest way remains as per post #4 and, if you want to enforce the auto-updating of the calculations, use a ContentControlOnExit macro code as:
Code:
Private Sub Document_ContentControlOnExit(ByVal ContentControl As ContentControl, Cancel As Boolean)
ActiveDocument.Fields.Update
End Sub