I have a table in word with many cells, some of which are related by catagory. I need to identify the text in one of those cells, and depenadant upon the entry, change the second. Although I can write to a given cell using:-
With ActiveDocument.Tables(1)
.Cell(1, 1).Select
Selection.Range.Text = "Large"
End With
I cannot seem to read this value to trigger an if statement
If Tables(1).Cell(1, 1).Range.Text = "Large" Then
MsgBox ("Large")
End If
Am I missing something??
DaveFish
With ActiveDocument.Tables(1)
.Cell(1, 1).Select
Selection.Range.Text = "Large"
End With
I cannot seem to read this value to trigger an if statement
If Tables(1).Cell(1, 1).Range.Text = "Large" Then
MsgBox ("Large")
End If
Am I missing something??
DaveFish