Code:
Sub Insert_R_C_into_every_cell()
ndx = 1
For Each aTable In ActiveDocument.Tables
' no. of rows and columns in each table
Rows = aTable.Rows.Count
Cols = aTable.Columns.Count
Dim rng As Range
' insert each cell value into the master table
For r = 1 To Rows
For c = 1 To Cols
' insert a cell ID into every cell
cellvalue = "Cell_ID[" & r & ", " & c & "]"
ActiveDocument.Tables(ndx).Cell(r, c).Range.InsertAfter cellvalue
ActiveDocument.Tables(ndx).Cell(r, c).Range.Font.Hidden = True
Next
Next
Exit For
ndx = ndx + 1
Next aTable
End Sub