I am working on an Agile Scrum based project using Azure DevOps. I want an MS Project macro that will allow me to add a set of tasks to PBI's that are returned by a particular query.
I can connect to Azure DevOps using the 'Team' plugin for Office, so I can get the query results in Microsoft Project.
This will be used after every Sprint Planning to automate adding tasks to user stories in bulk rather than having to do it by hand.
So if the query returns a PBI such as:
Work Item ID | Title | Work Item Type |
1234 | PBI Name1 | Product Backlog Item |
1235 | PBI Name2 | Product Backlog Item |
After the macro is run, I'd have
Work Item ID | Title | Work Item Type |
1234 | PBI Name1 | Product Backlog Item |
| Task 1 | Task |
| Task 2 | Task |
1235 | PBI Name2 | Product Backlog Item |
| Task 1 | Task |
| Task 2 | Task |
Is this possible to do in VBA?