Hi @Shel_Price ,
For my previous calculation to work for your naming pattern, this would be the formula for “Sprint 13” (the same should be repeated for the next sprints):
Aggregate(
Filter(
[Sprint].[Sprint].Members,
[Sprint].CurrentMember.Name MATCHES ".*2021.13$"
)
)
Or you can try this regular expression to improve the aggregated result: “^PMWeb.*2021.13$”
But if you want for them to be created automatically then you may find this community answer more suitable:
For that solution to work for your use case, you need to adjust the JavaScript in REST API import option to match your Sprint name pattern.
Kind regards,
Gerda