Using openpyxl I tried to read from the fifth line for some files. The files\' first four lines are the header. Then the main content has a different format fro
openpyxl
You can pass a range into ws.iter_rows('A4:Z256') but you're probably better off using ws.get_squared_range(1, 5,)
ws.iter_rows('A4:Z256')
ws.get_squared_range(1, 5,)