Aggregate: First

Aggregate: First

The First function searches the data for duplicate rows (based on the columns chosen by the user) and condenses them into a single row of data. The First function will then display the first value within the data that appeared for the duplicate rows. Any values following the first value will be lost during this process.

Example

The small dataset below will be used to show how First operates.

Column AColumn BColumn C
onetwo5
onetwo6
twotwo7
onetwo4

Applying the First function to Column C reduces the row count from four to two. The value in the column First of Column C shows the first value from Column C of the duplicate rows that were collapsed during the operation.

Column AColumn BFirst of Column C
onetwo5
twotwo7



    0 Kudos
    0 Replies