[Table of Contents] [docx version]

SpreadsheetML Reference Material - Table of Contents

calculatedColumnFormula (Calculated Column Formula)

Columns in a table can have cells that are calculated, usually based on values in other cells in the table. This element stores the formula that is used to perform the calculation for each cell in this column.

It shall be understood that formulas which reference columns of this table, shall be calculated using the cells in those columns on the same row of the table as the cell that the formula resides in.

See §3.17 for details on valid/invalid formulas.

Parent Elements

tableColumn3.5.1.3)

 

Attributes

Description

array (Array)

A Boolean value that indicates whether this formula is an array style formula.

 

The possible values for this attribute are defined by the XML Schema boolean datatype.

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_TableFormula">

   <simpleContent>

   <extension base="ST_Formula">

   <attribute name="array" type="xsd:boolean" default="false"/>

   </extension>

   </simpleContent>

</complexType>