A family of Microsoft presentation graphics products that offer tools for creating presentations and adding graphic effects like multimedia objects and special effects with text.
You just have to plug in my example:
If oShp.HasTable Then
For i = 1 To oShp.Table.Rows.Count
For j = 1 To oShp.Table.Columns.Count
Dim oCllShp As Shape
Set oCllShp = oShp.Table.Cell(i, j).Shape
Dim R As Long
For R = oCllShp.TextFrame2.TextRange.Runs.Count To 1 Step -1
With oCllShp.TextFrame2.TextRange.Runs(R)
If .Font.Fill.ForeColor.RGB = RGB(0, 0, 255) Then
.Text = "________"
.Font.Subscript = msoFalse
.Font.Superscript = msoFalse
End If
End With
Next
Next j
Next i
End If