Hello,
I'm trying to create a batch macro to apply modifications on an other file.
I have one file with the dataset and one file with the list of modifications.
For example :
List of modifications
| ID | Training | Username | Field to modify | Modification |
| 1 | Training 1 | User 1 | Hours | 4.00 |
| 2 | Training 2 | User 2 | Type | C |
| 3 | Training 1 | User 1 | Type | C |
Dataset
| Training | Username | Name | Hours | Date | Type |
| Training 1 | User 1 | XXXX | 2.00 | 2020-12-31 | C |
| Training 1 | User 1 | XXXX | 1.00 | 2020-12-31 | D |
| Training 2 | User 1 | XXXX | 2.00 | 2020-12-31 | D |
| Training 1 | User 1 | XXXX | 4.00 | 2020-12-31 | D |
| Training 2 | User 2 | YYYY | 4.00 | 2020-12-31 | D |
| Training 2 | User 2 | YYYY | 2.00 | 2020-12-31 | C |
And in the result I want to apply the [Modification] in the [Field to modifiy] column for the depending [Username] and [Training].
For the moment my Batch Macro seems to works for one cases per Training/Username but not if I have 2 modifications for the same couple Training/Username (at the end I have the 2 modfiications done but in separete lines ..)
Can you have ideas to solve that problem ?
Thanks