I am working with codes from dataframe column, example: case_id=211246842501 When I export to excel file show me something like this case_id= 2112+17 Even if I convert the value into string:
EUROC= pd.read_excel(f'{NewFilePath}{NewFile}', sheet_name="EUROC")
EUROC['case_id']=EUROC['case_id'].values.astype(str)
FileFinal='Test Prueba.xlsx'
full_path_file = f'{ICSPath}{FileFinal}'
writer = pd.ExcelWriter(full_path_file, engine='xlsxwriter', )
EUROC.to_excel(writer, sheet_name='EUROC', index=False)
What I can do to show the hole number? It can be string value I don't have issues with that but I need that the real value show us in the excel.
Regards
