Assume that I have a dataframe of 8000 rows x 7 columns.
Overview of the data
data = pd.read_excel('tmp.xlsx')
data.head(10)
ID Type CatID Val1 val2 Comment Disposition
20192658 N 52 256 358 Processing In Progress
20192658 N 53 258 365 repairing In Progress
20192658 N 53 258 365 Processed Resloved
20192753 K 98 324 347 Processing In Progress
20192753 K 87 365 378 Repairing In Progress
20192753 K 84 357 364 Processed Resolved
20192854 J 98 324 347 Processing In Progress
20192854 J 87 365 378 Repairing In Progress
20192854 J 84 357 364 Processed Resolved
20192789 M 96 369 345 Processing In Progress
There are around 197 unique ID's in the dataframe.
I'm trying to export the data to Excel with each ID to a separate sheet.
As of now I'm manually filtering the data and appending to each sheet. Is there any simple and better approach in doing soo in python?

