How to iterate sections, then iterate tables to rows

How to iterate sections then iterate tables to rows

@Mark030 It’s not clear what is your main goal. You can iterate by the:

for section in doc.sections:
for row in table.rows:
    row = row.as_row()
		for cell in row.cells:
            cell = cell.as_cell()

To find tables in sections you need to use: CompositeNode.get_child_nodes method | Aspose.Words for Python