So I tried the code you sent yesterday on a portion of a "real" data table and it choked on a merged cell after it got past the first row. Any suggestions? See attached doc for table. Thanks in advance for your help.
Code:
Sub Insert_R_C_into_every_cell()
Dim Rng As Range, aTable As Table, TblCell As Cell, cellvalue As String
For Each aTable In ActiveDocument.Tables
For Each TblCell In aTable.Range.Cells
With TblCell
cellvalue = "Cell_ID[" & .RowIndex & ", " & .ColumnIndex & "]"
Set Rng = .Range
With Rng
.End = .End - 1
.Collapse wdCollapseEnd
.Text = cellvalue
.Font.Hidden = True
End With
End With
Next TblCell
Next aTable
End Sub