Jan-09-2020, 05:56 PM
import pandas as pd workbook_url = 'C:/file.xlsx' df = pd.concat(pd.read_excel(workbook_url, sheet_name=None), ignore_index=True, sort=False)Can someone help me concat all sheets from my Excel file, but excluding two Sheets called 'Main' and 'Info'?
In this case I don't want to manually specify all sheet names that I want to load, but in instead I want to specify the ones that I don't want to load.

Is that possible?
Thanks!