Hi All ,
I am facing an issue with an excel automation .
I have the following excel Sheet …
and another work book which consists of auditing attributes for each fruits category
And I want to the following result into another excel sheet
Right now, I am manually doing a lookup on the group category of the first data frame with the "group Audit " column on the second. Afterward doing a transpose on the audit variation based on the Group Type.Is there any way to automate this process?
This would save a lot of time. Suggestions are welcomed.
I am facing an issue with an excel automation .
I have the following excel Sheet …
idx | Group | Family | Quantity | Audit comments y/n |
1 | Apple | Red | 100 | |
2 | Apple | Green | 20 | |
3 | Orange | Mandarin | 100 | |
4 | Orange | Tangerine | 88 | |
5 | Pineapple | Brecheche | 60 | |
6 | Pineapple | Queen | 70 | |
7 | Apple | Gala | 44 |
and another work book which consists of auditing attributes for each fruits category
Group audit | Audit variations |
Orange | Size |
Orange | Color |
Orange | Number_Of_Items |
Apple | Quantity |
Apple | variations |
Apple | Family |
Apple | Defect |
Pineapple | Size |
Pineapple | Firmness |
Pineapple | Special_Feature |
Pineapple | Family |
Pineapple | color |
Watermelon | ripeness |
Watermelon | Heaviness |
Watermelon | Family |
Watermelon | weight |
And I want to the following result into another excel sheet
idx | Group | Family | Quantity | Audit comments y/n | Quantity | variations | Family | Defect | |
1 | Apple | Red | 100 | ||||||
2 | Apple | Green | 20 | ||||||
3 | Apple | Mandarin | 100 | ||||||
4 |
| Tangerine | 88 | ||||||
5 |
| Brecheche | 60 | ||||||
6 |
| Queen | 70 | ||||||
7 | Apple | Gala | 44 |
Right now, I am manually doing a lookup on the group category of the first data frame with the "group Audit " column on the second. Afterward doing a transpose on the audit variation based on the Group Type.Is there any way to automate this process?
This would save a lot of time. Suggestions are welcomed.