(A*B)+(C*D)
  • 1 Minute to read
  • Dark
    Light
  • PDF

(A*B)+(C*D)

  • Dark
    Light
  • PDF

Article summary

DMath: (A*B)+(C*D)

Multiples A by B, and C by D, and then adds the two products together

Purpose

Use this function to:
  • Add together the result of product AB and product CD

Return Value

PropertyValue
FieldTypeDouble
FieldSizeLow / Med / High / Continuous
DataTypeDiscrete / Continuous
DataSizeShort / Integer / LongInteger / Double
Example Return Value: X*.XXXXXX....-X*.XXXXX

e.g.  21.000000, 98754654.123456, -5.000000, -654.320000
Record set display
The result of DMATH(A+B+C+D) is a floating point field.   The recordset viewer only displays decimals where there is at least 1 non zero decimal digit.   Consider using LMATH(A+B+C+D) if no input fields have decimal precision.

Parameters

ParameterJSONDescription
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)+(C*D)”(A*B)+(C*D)
A“p2”: “NumericFieldName”
“p2”: “#N*.N*”
Required. Numeric input for A
Supports:  
  • DataType: Discrete / Continuous
  • Field Type: Integer, Double
  • Fixed Value:  #N*    e.g. #201596,    #-87
  • Fixed Value: #N*.N* e.g. #201596.05,    #-87.98
B“p3”: “NumericFieldName”
“p3”: “#N*.N*”
Required. Numeric input for B
Supports:  
  • DataType: Discrete / Continuous
  • Field Type: Integer, Double
  • Fixed Value:  #N*    e.g. #201596,    #-87
  • Fixed Value: #N*.N* e.g. #201596.05,    #-87.98
C“p4”: “NumericFieldName”
“p4”: “#N*.N*”
Required. Numeric input for C
Supports:  
  • DataType: Discrete / Continuous
  • Field Type: Integer, Double
  • Fixed Value:  #N*    e.g. #201596,    #-87
  • Fixed Value: #N*.N* e.g. #201596.05,    #-87.98
D“p5”: “NumericFieldName”
“p5”: “#N*.N*”
Required. Numeric input for D
Supports:  
  • DataType: Discrete / Continuous
  • Field Type: Integer, Double
  • Fixed Value:  #N*    e.g. #201596,    #-87
  • Fixed Value: #N*.N* e.g. #201596.05,    #-87.98
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


Usage Notes

See Also:   

Example

ExampleDetails
DescriptionSum products AB and CD
Input
  • Table: = [customer]
  • Filter: = [No Filter]
  • Function: = DMath
  • Math Function = (A*B)(+(C*D)
  • A:= [customer ].[Input_A]
  • B:= [customer ].[Input_B]
  • C:= [customer ].[Input_C]
  • D:= #100.23
  • Name: = AtimesBplusCtimesD
Sample





Was this article helpful?