All eazyBI for Jira eazyBI for Confluence Private eazyBI

DefaultMember

Returns the default member of a dimension or hierarchy (which typically is All Members).

Syntax

Dimension_Expression.DefaultMember

or

Hierarchy_Expression.DefaultMember

Arguments

Dimension_Expression

Hierarchy_Expression

MDX expression that returns a dimension (default hierarchy)

or a specified hierarchy.

Examples

[Issue].DefaultMember returns All Issues default member.

[Time.Weekly].DefaultMember returns All Times default member from Weekly hierarchy.

[Time].CurrentHierarchy.DefaultMember returns All Times default member from whichever "Time" hierarchy is currently used in the report (either default, weekly or custom).

Days in progress

Any default measure in eazyBI is related to "Time" dimension. Some scenarios require ignoring this default mapping by "Time" dimension to get needed results. The formula calculates total days issues spent in "In Progress" status category before reaching "Done" status category. eazyBI, by default, will split "Days in transition status" by any period when an issue moved from a status. If the issue was open for a longer period and had several status changes over time, the formula should ignore "Time" to get the total time the issue spent in those statuses. The example uses a tuple with time default member [Time].CurrentHierarchy.DefaultMember to pull in total time no matter when any status change was done. 

([Measures].[Days in transition status],
[Transition Status.Category].[In Progress],
[Status.Category].[Done],
[Time].CurrentHierarchy.DefaultMember)

See example report Control chart (cycle time) in our demo account. Calculated measure Rolling average cycle time uses the formula above as a part of the calculation to get a total time an issue spent in any status from status category In Progress.