Hello,
How would it be possible with VBA to compare 2 lists and make them match a certain format.
So basically, I export a CSV with tasks and stories. The stories can have multiple tasks (parent/child). I have Title, decided at the beginning of a project that has multiple stories (again parent/child)
Basically, we create a template of the project like this:
A is the ID of the project, the main title (B) has no ID and no type
B is the type which has story (always the name "story"), a story can have multiple task with multiple names (can be task, debug, meeting, etc)
C is the description which will contain first the main title (Brain Storm, Preparation and the description of the stpries and task)
The issue is when I upload a CSV file from the report, there will be more task and stories. How can I create a VBA that will for example add ID 13 below 12 and above 20.
The CSV that I upload only has stories and task (in order) so if my CSV has ID 13 with a new task created after the template, how can we add it in the right place.
I want to make sure it will be able to add it if the new task is in the middle of the sroty, the beginning or the last one. I would also want to be able to add full new stories with tasks.
Thank you sooo much!
How would it be possible with VBA to compare 2 lists and make them match a certain format.
So basically, I export a CSV with tasks and stories. The stories can have multiple tasks (parent/child). I have Title, decided at the beginning of a project that has multiple stories (again parent/child)
Basically, we create a template of the project like this:
A is the ID of the project, the main title (B) has no ID and no type
B is the type which has story (always the name "story"), a story can have multiple task with multiple names (can be task, debug, meeting, etc)
C is the description which will contain first the main title (Brain Storm, Preparation and the description of the stpries and task)
The issue is when I upload a CSV file from the report, there will be more task and stories. How can I create a VBA that will for example add ID 13 below 12 and above 20.
The CSV that I upload only has stories and task (in order) so if my CSV has ID 13 with a new task created after the template, how can we add it in the right place.
I want to make sure it will be able to add it if the new task is in the middle of the sroty, the beginning or the last one. I would also want to be able to add full new stories with tasks.
Thank you sooo much!
ID | Type | Description |
Brain Storm | ||
10 | Story | |
11 | Task | |
12 | Task | |
20 | Story | |
21 | Task | |
22 | Task | |
23 | Task | |
Preparation | ||
30 | Story | |
31 | Task | |
32 | Task | |
40 | Story | |
41 | Task |