Hi @Jim
Sorry for not answering sooner.
To create the table, that has the tasks and subtasks in it, please choose the Issue dimension in rows, under “All hierarchy level members” choose Sub-task at the Parent level.
Then under the “Drill into or expand” choose Sub-task under Sub-task level.
This will create the structure, tasks, and sub-tasks under them:
To get the subtask’s status based on the Target start that falls into next month, please use the formula:
CASE WHEN
DateInPeriod(
[Measures].[Issue target start],
[Time].[Month].CurrentDateMember.NextMember
)
THEN
[Measures].[Issue status]
END
Please double-check the Issue target start name to see if it’s correct.
And a similar formula to create the component’s column based on the Issue Target start instead of [Measures].[Issue status]
choose the [Measures].[Issue component]
.
Kindly,
Ilze