Hi,
I need help in creating different Excel files for each product from each row. I have a table having unique information about 10 products in a table. Now I want to create 10 different files for each product having name as "Product Name" & 1 row in each file. For Instance,
below is my table :
| Product Name | PID | P_Category | Market | Currency |
| A | 1 | Edible | APAC | INR |
| B | 2 | Non-Edible | US | USD |
| C | 3 | Edible | APAC | USD |
| D | 4 | Edible | US | USD |
| E | 5 | Edible | US | USD |
| F | 6 | Non-Edible | APAC | USD |
| G | 7 | Non-Edible | Europe | GBP |
| H | 8 | Non-Edible | Europe | USD |
| I | 9 | Edible | US | USD |
| J | 10 | Edible | US | USD |
Requirement: Create separate excels for each Product and having data related to that product only
1 file - A.xlsx
Data :
| Product Name | PID | P_Category | Market | Currency |
| A | 1 | Edible | APAC | INR |
2nd Files - B.xlsx
Data :
| Product Name | PID | P_Category | Market | Currency |
| B | 2 | Non-Edible | US | USD |
Similarly for rest til J
Regards,
S