I have a lot of Excel files(10,000) with hidden columns and rows and I want to put them in one big Data Frame but the problem is in Data Frame I can not see those hidden columns and rows. I tried
import openpyxl
wb = openpyxl.load_workbook('yourfile.xlsx')
ws = wb.get_sheet_by_name('YourSheetName')
for row in ws.rows:
if not row.value:
ws.row_dimensions[row.rows].hidden = False
This gives an error and I can not find any sol with xlsxwriter as well.
I am looking for something like a simple for loop or something that can iterate and unhide the rows and columns and create a Data Frame. Any help would be much appreciated.
https://drive.google.com/drive/folders/1W1qlveTPWdp9pyrdu3LLksibM5713xKc?usp=sharing
Files are in this folder.