Difference between revisions of "XL3LookupRW"

(Created page with 'Returns a cube cell value for a given cross section of the cube. Allows the formula to be typed on to perform a writeback operation for the given tuple. Use the {{Menu|Insert Fo…')
 
Line 43: Line 43:
  
 
{{Code|1==XL3LookupRW( 1, "Time", "2003", "Measures", "MDX:((Measures.Revenue,ParallelPeriod(Time.Year))-(Measures.Revenue))/(Measures.Revenue,ParallelPeriod(Time.Year))" )}}
 
{{Code|1==XL3LookupRW( 1, "Time", "2003", "Measures", "MDX:((Measures.Revenue,ParallelPeriod(Time.Year))-(Measures.Revenue))/(Measures.Revenue,ParallelPeriod(Time.Year))" )}}
 +
 +
==See Also==
 +
* [[Formula Reference]]

Revision as of 09:42, 6 October 2010

Returns a cube cell value for a given cross section of the cube. Allows the formula to be typed on to perform a writeback operation for the given tuple.

Use the Insert Formula > Value menu or ribbon item to insert the formula using a wizard.

Syntax

XL3LookupRW( connection, [hierarchy1], [member1],…, [hierarchy14], [member14] )

Parameters

Parameter Description
connection Connection number to use
hierarchy1,…, hierarchyN Name of the hierarchy that the member applies to e.g. "Measures" or "[Customer].[Customer Geography]"
member1,…, memberN Comma-delimited list of members to use for the cross section

Examples (based on the Bicycle Sales cube)

Revenue 2004.

=XL3LookupRW( 1, "[Time]", "[Time].[2004]", "[KeyFigures]", "[KeyFigures].[Revenue]" )

Sum of Revenue 2003 and 2004.

=XL3LookupRW( 1, "Time", "2003,2004", "KeyFigures", "Revenue" )

XL3LookupRW using MDX

You can specify MDX calculation for members using the MDX: syntax.

Variance %.

=XL3LookupRW( 1, "Channel", "Direct Sales", "KeyFigures", "Revenue", "Scenario", "MDX:(Budget-Actual)/Budget", "Time", "January 2003" )

% of Previous Year.

=XL3LookupRW( 1, "Time", "2003", "Measures", "MDX:((Measures.Revenue,ParallelPeriod(Time.Year))-(Measures.Revenue))/(Measures.Revenue,ParallelPeriod(Time.Year))" )

See Also