View Single Post
 
Old 02-10-2017, 03:02 AM
gmayor's Avatar
gmayor gmayor is offline Windows 10 Office 2016
Expert
 
Join Date: Aug 2014
Posts: 4,138
gmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud ofgmayor has much to be proud of
Default

You probably want something like

Code:
Dim oTable As Table
Dim oCell As Cell
    If ActiveDocument.Tables.Count > 0 Then
        Set oTable = ActiveDocument.Tables(1)    'the first table
        Set oCell = oTable.Cell(1, 1)    'Row 1, Column 1
        oCell.Range.Fields.Update
    End If
__________________
Graham Mayor - MS MVP (Word) (2002-2019)
Visit my web site for more programming tips and ready made processes www.gmayor.com
Reply With Quote