The following code iterates through rows in the attached docx. Multiple cell instances have the the same text values somehow. [pu.docx](https://github.com/python-openxml/python-docx/files/685618/pu.docx) ```python import docx import os doc = docx.Document('pu.docx') for table in doc.tables: rowNo = 0 for row in table.rows: cellNo = 0 for cell in row.cells: print 'rowidx = {0} cellidx = {1} text ={2} '.format(rowNo, cellNo, cell.text) cellNo += 1 rowNo += 1 ```