RowNo
If the table or table equivalent has multiple vertical dimensions, the current column segment will include only rows with the same values as the current row in all dimension columns, except for the column showing the last dimension in the inter-field sort order.
Syntax:
RowNo([TOTAL])
Return data type: integer
Arguments:
Argument | Description |
---|---|
|
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. The TOTAL qualifier may be followed by a list of one or more field names within
angle brackets |
Examples and results:
Customer | UnitSales | Row in Segment | Row Number |
---|---|---|---|
Astrida | 4 | 1 | 1 |
Astrida | 10 | 2 | 2 |
Astrida | 9 | 3 | 3 |
Betacab | 5 | 1 | 4 |
Betacab | 2 | 2 | 5 |
Betacab | 25 | 3 | 6 |
Canutility | 8 | 1 | 7 |
Canutility | 2 | 8 | |
Divadip | 4 | 1 | 9 |
Divadip | 1 | 2 | 10 |
Examples | Results |
---|---|
Create a chart consisting of a table with the dimensions Customer, UnitSales, and add RowNo( ) and RowNo(TOTAL) as measures labeled Row in Segment and Row Number. |
The Row in Segment column shows the results 1,2,3 for the column segment containing the values of The Row Number column disregards the dimensions can be used to count the rows in the table. |
Add the exression: IF( RowNo( )=1, 0, UnitSales / Above( UnitSales )) as a measure. |
This expression returns 0 for the first row in each column segment, so the column will show: 0, 2.25, 1.1111111, 0, 2.5, 5, 0, |
Data used in examples:
Temp:
LOAD * inline [
Customer|Product|OrderNumber|UnitSales|UnitPrice
Astrida|AA|1|4|16
Astrida|AA|7|10|15
Astrida|BB|4|9|9
Betacab|CC|6|5|10
Betacab|AA|5|2|20
Betacab|BB|1|25| 25
Canutility|AA|3|8|15
Canutility|CC|||19
Divadip|CC|2|4|16
Divadip|DD|3|1|25
] (delimiter is '|');