CalculatedMembers.Add(String, String, Object, Object) Method

Definition

Adds a calculated field or calculated item to a PivotTable.

public Microsoft.Office.Interop.Excel.CalculatedMember Add (string Name, string Formula, object SolveOrder, object Type);
Public Function Add (Name As String, Formula As String, Optional SolveOrder As Object, Optional Type As Object) As CalculatedMember

Parameters

Name
String

Required String. The name of the calculated member.

Formula
String

Required String. The formula of the calculated member.

SolveOrder
Object

Optional Object. The solve order for the calculated member.

Type
Object

Optional Object. The type of calculated member.

Returns

Remarks

The Formula argument must have a valid MDX (multidimensional expression) syntax statement. The Name argument has to be acceptable to the Online Analytical Processing (OLAP) provider and the Type argument has to be defined.

If you set the Type argument of this method to xlCalculatedSet, then you must call the AddSet(String, String) method to make the new field set visible in the PivotTable.

Applies to