INVERSE macro
The INVERSE
macro
is available only in Unica Campaign.
Syntax
INVERSE(data)
Parameters
data
The
numerical values to compute the inverse of. This can be a constant
value, a column, a cell range, or an expression evaluating to any
of the above. For the format definition of data
,
see the "Macro Function Parameters" section in the chapter
in this guide for your product.
Description
INVERSE
calculates
the negative of the values in the specified data range. It returns -x (that
is, negative values are returned as positive values, and positive
values are returned as negative values). INVERSE
returns one new column for each input column, each containing the
inverse of the values in the corresponding input column.
-
). For example, V2
=
-V1
is the same as V2
=
INVERSE(V1)
.Examples
TEMP = INVERSE(3.2) Creates
a new column named |
TEMP = INVERSE(V1) Creates
a new column named |
TEMP = INVERSE(V1:V3)
Creates three new columns named |
TEMP = INVERSE(V1[10:20])
Creates a new column named |
TEMP = INVERSE(V1[1:5]:V2)
Creates two new columns named |
Related functions
Function | Description |
---|---|
ABS |
Computes the absolute value of the contents of the specified data range |
NOT |
Computes the logical NOT of the contents of the specified data range |
SIGN |
Computes the sign (positive or negative) of the values in the specified data range |