Skip to main content

First - chart function

First() returns the value of an expression evaluated with a pivot table's dimension values as they appear in the first column of the current row segment in the pivot table. This function returns NULL in all chart types except pivot tables.

Syntax:  

first([TOTAL] expr [, offset [, count]])

Arguments:  

Argument Description
expression The expression or field containing the data to be measured.
offset

Specifying an offsetn, greater than 1 moves the evaluation of the expression n rows further to the right from the current row.

Specifying an offset of 0 will evaluate the expression on the current row.

Specifying a negative offset number makes the First function work like the Last function with the corresponding positive offset number.

count

By specifying a third parameter count greater than 1, the function will return a range of values, one for each of the table rows up to the value of count, counting to the right from the original cell.

TOTAL

If the table is one-dimensional or if the qualifier TOTAL is used as argument, the current column segment is always equal to the entire column.

See: Defining the aggregation scope

If the pivot table has multiple horizontal dimensions, the current row segment will include only columns with the same values as the current column in all dimension rows except for the row showing the last horizontal dimension of the inter-field sort order.The inter-field sort order for horizontal dimensions in pivot tables is defined simply by the order of the dimensions from top to bottom.

Examples:  

first( sum( Sales ))

first( sum( Sales ), 2 )

first( total sum( Sales )

rangeavg (first(sum(x),1,5)) returns an average of the results of the sum(x) function evaluated on the five leftmost columns of the current row segment.

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!