I have a series to tables in a document and depending on it use at a particular point in time, I modify the attributes of the data in columns 3 & 4. So I was using this to select each column and then changing font settings: ActiveDocument.Tables(i).Columns(3).Select
However, now the table has changed and row 1 has been merged across the entire table so this command returns an error. I can seem to figure out how to select column(3).row(2) through column(4),row(x) where x is the last row of the table. I am using Selection.Information(wdMaximumNumberOfRows to get the value for X.