A script-enabled browser is required for this page to function properly.

<matrixCell> XML tag

The <matrixCell> tag delimits the cells in a matrix style layout. The <matrixCell> tag can only be nested within a <matrix> tag. You must nest <field> tags within the <matrixCell> tag to list the fields you want to include as matrix cells.

Syntax

<matrixCell>
  master_group_content
</matrixCell>

Example

The following example shows a segment of an XML report definition that defines a matrix cell:

<matrixCell name="g_total_sales">
  <field name="f_total_sales" source="total_sales" 
    label="Total Sales"
    font="Arial" fontSize="8" lineColor="noLine"
    formatMask="LNNNGNNNGNNNGNN0D00"/>
  <field name="f_total_cost" source="total_cost" 
    label="Total Cost"
    font="Arial" fontSize="8" lineColor="noLine"
    formatMask="LNNNGNNNGNNNGNN0D00"/>
  <field name="f_total_profit" source="total_profit" 
    label="Total Profit"
    font="Arial" fontSize="8" lineColor="noLine"
    formatMask="LNNNGNNNGNNNGNN0D00"/>
</matrixCell>

See also

About XML in reports

Oracle Reports XML tags