I've been following these links:
Import multiple excel files into python pandas and concatenate them into one dataframe & Import multiple csv files into pandas and concatenate into one DataFrame
But I'm still unable to resolve the issue. I've not even tried to combine all the sheets yet, as I'm unable to even get them imported. The error I'm getting is saying the sheet name does not exist.
path = ('E:\\Python\\Projects\\big data\\Source Data\\convert')
fileNames = (glob.glob(path + '/*.XLSX') )
dataFrame_set = []
for files in fileNames:
dataFrame_set.append(pd.read_excel(files,'/*'))