???
Has anyone had any luck with the MEMBERS function?
I have tried a number of different things and think my syntax is correct whereas I want to pull all members from 1 level of a hierarchy:
members([Finance_Cube_Source].[VS].[VS], [Approved])
The above syntax gets the following error:
An invalid number of operands was specified for the operator 'members' in the dataItem 'dataItem="AH2"'.
Any thoughts?
thanks,
kado
The members function will accept either hierarchies or levels. (pipes "|" in the tips means "or")
Normally you wouldn't need to use the members function. It is applied automatically when you reference a level or a hierarchy (depending on context of course). Putting [Cube].[Date].[Date].[Year] into a data item is exactly the same as members([Cube].[Date].[Date].[Year]).
Thanks, that makes sense!
;D