A+B (LMATH)
- 1 Minute to read
- Print
- DarkLight
- PDF
A+B (LMATH)
- 1 Minute to read
- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
LMath: A+B
Adds the value of integer portion of Input A to the value of integer portion of Input B
Purpose
Use this function to:
- Sum numeric data
- Add values from numeric columns together
- Increment a column by a fixed value
Return Value
Property | Value |
---|---|
FieldType | Integer |
FieldSize | Low / Med / High / Continuous |
DataType | Discrete / Continuous |
DataSize | Short / Integer |
Example Return Value: X*...-X*
e.g. 21, 98754654, -5, -654
Parameters
Parameter | JSON | Description |
---|---|---|
Table | “targetTable”: “MyTableName” | The target table on which the new field will be created |
Filter | “dataset”: {DataSet_JSON} | Optional. If a filter is applied, records not in the filter recordset will be returned as null. |
Math Function | “p1”: “A+B” | A+B |
A | “p2”: “NumericFieldName” “p2”: “#N*.N*” “p3”: “#-N*.N*” | Required. Supports:
|
B | “p3”: “NumericFieldName” “p3”: “#N*.N*” “p3”: “#-N*.N*” | Required. Supports:
|
Treat Null as Zero | "nullIsZero": true "nullIsZero": false | True/False. Default = False If true, then any null values in the input fields will be treated as if they have a value of 0. |
JSON Sample
{
"method": "BuildBakedField",
"project": "Model1",
"targetTable": "WHOLESALE",
"overwrite": true,
"name": "Fresh n Milk",
"function": "lmath",
"p1": "A+B",
"p2": "Fresh",
"p3": "Milk"
}
Usage Notes
Adding together 2 decimals using A+B(LMATH) adds together just the integer portions of the decimal number:
See Also:
- LMATH A-B
- LMATH A+B+A
- LMATH A+B+C+D
- Expression Field
- A+B (DMATH)
Example
Example | Details |
---|---|
Description | Add two numeric fields together |
Input |
|
Sample |
Was this article helpful?