Returns the set of values from a range of given members. Often used to provide an OLAP data source for In-Cell Chart formulas.
Use the Insert Formula > Data Series menu or ribbon item to insert the formula using a wizard. For more details, review Insert Data Series.
Syntax
XL3DataSeriesLookup( Connection, MemberSet, Measure, Hierarchy1, Member1,…, Hierarchy100, Member100 )
Parameters
Parameter | Description |
Connection | Connection number to use. |
MemberSet | An XL3MemberSet formula specifying the set to return. |
Measure | The measure to use. |
Hierarchy1,…, HierarchyN | Name of the hierarchy that the member applies to for example, "Measures" or "[Customer].[Customer Geography]" . |
Member1,…, MemberN | Either a single member's unique name or an XL3Member formula. |
Examples
These examples are based on the Bicycle Sales cube.
Returns the set of 12 Revenues for the months of 2003:
=XL3DataSeriesLookup(1,XL3MemberSet(1,"[Time]","[Time].[All].&[2003]","DescendantsAt","[Time].[Month]"),"[Measures].[Value]","[KeyFigures]","[KeyFigures].[All].&[Revenue]")
Returns a line chart for a set of 12 Revenues for the months of 2003:
=XL3SparkLineM( XL3DataSeriesLookup(1,XL3MemberSet(1,"[Time]","[Time].[All].&[2003]","DescendantsAt","[Time].[Month]"),"[Measures].[Value]","[KeyFigures]","[KeyFigures].[All].&[Revenue]") )