Hello,
I have a structure of issues nested by link (“contains in”)
I need a Measure/Total that can display sum of columns (leaf1_todo, leaf1_in progress) like it sums in [Measures].[Issues created]
like this
Hello,
I have a structure of issues nested by link (“contains in”)
I need a Measure/Total that can display sum of columns (leaf1_todo, leaf1_in progress) like it sums in [Measures].[Issues created]
like this
I’ve found:
Still looking how to:
like here
I’ve found solution
NonZero(
Count(
Filter(
--get desc of root hierarhy('INIT')
Descendants([Issue].CurrentHierarchyMember.GetLinkedMember('INIT')),
IIf(
--filter by issue type
IsEmpty(ExtractString([Measures].[Issue type], 'CTE'))
,
0,
iif(
--filter by status
IsEmpty(ExtractString([Measures].[cat0], 'To Do'))
,
CBool(0),
CBool(1)
)
)
)
)
)
I would be glad if you can tell less complicate solution than mine or point to mistakes
Hi @cybertachikoma
Try creating a calculated measure using this formula:
(
[Measures].[Issues created],
[Issue type].[CTE],
[Status].[To Do]
)
It should look for specific issue type and status in the hierarchy against each row in the report.
Martins / eazyBI
What formula do you use to calculate “leaf1_todo” measure right now?
And can you add “Issue status” to columns and share another screenshot?
Martins /eazyBI
Hi, I’m sorry for late answer.
- What formula do you use to calculate “leaf1_todo” measure right now?
this is for “leaf1_todo”
CASE
WHEN
IIf(
IsEmpty(ExtractString([Measures].[Issue type], 'CTE'))
,
0,
iif(
IsEmpty(ExtractString([Measures].[status_category], 'To Do'))
,
CBool(0),
CBool(1)
)
)
THEN 1
END
and this for “status_category”
[Status.Category].[Status].getMemberByKey(
[Issue].CurrentHierarchyMember.get('Status ID')
).Parent.Name
- And can you add “Issue status” to columns and share another screenshot?
And additional question:
When collapsed - it sums Total
But when Expanded - no Total.
How to Sum in any case(expanded/collapsed)?
I’ve created discreete question for that
For custom formulas in calculated measures you can try using special comments with annotation in the first line of your calculated measure formula.
-- annotations.total=sum
When added as first line to your formula in the calculated measure, it would force to show the sum correctly in report.
Martins / eazyBI
Hello,
There’re two questions in this Topic, let’s discuss the last one (about -- annotations.total=sum
) in
new Topic?
//Total of Descendants in Collapsed/Expanded view
unfortunately, that’s not working. I’ve decribed It in
//Total of Descendants in Collapsed/Expanded view