If it does not depend on the hierarchy, then re-evaluating the expression with a different member of this context must produce the same answer.
Some examples:[Measures].[Unit Sales]
depends on all dimensions except [Measures]
. ([Measures].[Unit Sales], [Time].[1997]) > 1000
depends on all hierarchies except [Measures] and [Time]. Filter([Store].[USA].Children, [Measures].[Unit Sales] < 50)
depends upon all hierarchies except [Store] and [Measures]. How so? Normally the scalar expression would depend upon all hierarchies except [Measures], but the Filter
function sets the [Store] context before evaluating the scalar expression, so it is not inherited from the surrounding context. Adds the given dependencies to this task. See here for a description of the types of objects which can be used as task dependencies.
@param paths The dependencies to add to this task. @return the task object this method is applied to
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|