I have read the articles on how to aggregate fix versions that all start with the same characters but I can’t seem to get the regex right to aggregate by the same characters at the end. My current work around is to build out the calculated member with a bunch of OR statements, but that seems very kludgey. (see below)
Aggregate(
Filter(
[Fix Version].[Version].Members,
[Fix Version].CurrentHierarchyMember.Name MATCHES ‘OIM - MVP1.5.0’ OR
[Fix Version].CurrentHierarchyMember.Name MATCHES ‘OO - MVP1.5.0’ OR
[Fix Version].CurrentHierarchyMember.Name MATCHES ‘BYP - MVP1.5.0’ OR
[Fix Version].CurrentHierarchyMember.Name MATCHES ‘TME - MVP 1.5.0’ OR
[Fix Version].CurrentHierarchyMember.Name MATCHES ‘WMX - MVP1.5.0’ OR
[Fix Version].CurrentHierarchyMember.Name MATCHES ‘WMX - MVP1.5.0’ OR
)
)