Forum Discussion
If you are finding the "Cell" within the table, then it should respond to standard table properties. This means your table object should have a RowCount property.
So, if you want to read the first column of the last row, you should do something like this:
tableObject.Cell(tableObject.RowCount-1, 0)
EDIT: Since your table is dynamic in rows, the above method is the recommended method for getting to any particular cell. Mapping the cell will not get you what you want since that first number will be changing every time. When it comes to dynamically generated content like this, it's best to map the parent object (in this case, the table) and use code expressions like what I've noted to get to individual cells.
when i try to retrieve value from the cell using -
tableObject.Cell(tableObject.RowCount-1, 0)
I'm getting an error object not callable. Do you know how this can be resolved?
Related Content
- 3 years ago
- 12 years ago
- 4 years ago
- 2 years ago
Recent Discussions
- 22 hours ago
- 23 hours ago
- 5 days ago