I am trying to import data in an .xlsm file as a data frame. When I import the .xlsm file using the command below, it gives me an empty data frames as the result:
exp = pd.read_excel(File_Path+'file_name'.xlsx',sheetname='Data',header=None)
I have manually saved .xlsm files as .xlsx file and imported them as data frame.
Can anybody tell me how to save as .xlsm file as .xlsx using Python?