A family of Microsoft word processing software products for creating web, email, and print documents.
I would not refer to what you want to do as Conditional Formatting. However, if you were to create an AutoText Entry that contained the required table row and its contents, you could use code such as the following in the This Document object
Private Sub Document_ContentControlOnExit(ByVal ContentControl As ContentControl, Cancel As Boolean)
Dim i As Long
With ActiveDocument
For i = 1 To .ContentControls.Count
If .ContentControls(i).Tag = "CheckYes" Then
If .ContentControls(i).Checked Then
Selection.Tables(1).Range.InsertAfter .AttachedTemplate.AutoTextEntries("Name of AutoText Entry")
.ContentControls(i).Checked = False
End If
Exit For
End If
Next i
End With
End Sub
Take a look at Greg Maxey's website for more information on working with Content Controls
http://gregmaxey.mvps.org/word\_tip\_pages/content\_controls.html