J
joseph.choi13
How do I find a cell with the words "this cell", and get the value in
the next cell in word? Is there an offset function?
For Each oCell In oTableRge.Cells
If (InStr(1, Left((oCell.Range.Text),
Len(oCell.Range.Text) - 1), "this cell", vbTextCompare)) > 0 Then
**Get the value in the next cell**
End If
Next
Thanks in advance
the next cell in word? Is there an offset function?
For Each oCell In oTableRge.Cells
If (InStr(1, Left((oCell.Range.Text),
Len(oCell.Range.Text) - 1), "this cell", vbTextCompare)) > 0 Then
**Get the value in the next cell**
End If
Next
Thanks in advance