|
TEMP = 3 PLUS 4 or TEMP = 3 + 4
Creates a new column named TEMP containing the value seven.
|
Creates a new column named TEMP, where each value is the row value of column V1 plus the corresponding row value of column V2.
|
Creates three new columns named TEMP, VX, and VY. The column TEMP contains the values in V1 plus the corresponding row values of column V4. The column VX sums columns V2 and V5. The column VY sums column V5 and V6.
|
TEMP = V1[10:20] + V2 or TEMP = V1[10:20] + V2[1:11]
Creates a new column named TEMP, where the first 11 cells contain the sums of the values in rows 10-20 of column v1 and the values in rows 1-11 of column V2. The other cells in TEMP are empty.
|
SUM or TOTAL
|
Copyright IBM Corporation 2013. All Rights Reserved.
|