I have a table that has 12 rows. The user can click on the 1st column in each row which has the same entry macro in it. I want to be able to determine which row the user came from so that I can clear out that row and all rows till the end of the table, then do other processing.
Is there a way to retrieve the row # (RowIndex) of the Row the user was in? I tried
CurrentRowNum = ActiveDocument.Tables(9).Cell_
(Selection.Information(wdWithInTable), 1).RowIndex
It brings back Row # = 12 (last row in the table).
Thanks for your help!!
Is there a way to retrieve the row # (RowIndex) of the Row the user was in? I tried
CurrentRowNum = ActiveDocument.Tables(9).Cell_
(Selection.Information(wdWithInTable), 1).RowIndex
It brings back Row # = 12 (last row in the table).
Thanks for your help!!