Hello,
I have a txt file which when converted to csv looks like this:
| ID | KEY | Humid | Cool | Name |
| ABC1 | 1 | 0 | (null) | Apple |
| ABC1 | 2 | P | 0 | Orange |
| XYZ1 | 3 | A | 0 | Mango |
| XYZ1 | 4 | X | 0 | Banana |
| ABC2 | 5 | T | 0 | Pineapple |
| XYZf2 | 6 | R | 0 | Pears |
I want to split the above table on basis of different ID into multiple different xlsx file as output, so we have 1 workbook for each unique ID field.
Any idea how I can implement the same?