Hi,
I am trying to count the number of subtasks per “target start” date.
Criteria are:
- number of subtasks with original estimate group by month
- exclude subtasks that has “A” label
Tried this but its giving me no result.
CASE WHEN
[Measures].[Original estimated hours]>0
THEN
Val(([Measures].[Issues with Target start],[Label].DefaultMember)
([Measures].[Issues with Target start],[Label].[A]))
END
any advise! thanks a lot.