Hello,
I have been trying this , but not yet got the expected output.
I have a excel file with 3 columns .One of which is named as “Name” , which consists of some common names . I would like get all the rows with common names & put them in a separate excel file.
Eq: Input
Name Surname Balance
raj kumar 20
raj kumar 25
raj kumar 30
ravi singh 56
ravi singh 45
parth yadav 10
suresh moti 62
Here, I need all the row details of Raj in separate excel file. Similarly, with the rest of the names. All names in separate excel file.
Output:
raj.xlsx
Name Surname Balance
raj kumar 20
raj kumar 25
raj kumar 30
ravi.xlsx
Name Surname Balance
ravi singh 56
ravi singh 45
parth.xlsx
Name Surname Balance
parth yadav 10
suresh.xlsx
Name Surname Balance
suresh moti 62
Would appreciate any help with this.