Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 27 Next »

Description

Adds a new column that returns the addition or concatenation of the given elements. Depending on the input data types, this operation can be used in different ways: 

  • Addition of two or more numbers (float or integer). This operation returns a float or integer.

  • Addition of two or more duration fields. This operation returns a duration.

  • Addition of a timestamp and a duration. This operation returns a timestamp.

  • Concatenation of two or more strings. This operation returns a string.

How does it work in the search window?

Select Create column in the search window toolbar, then select the Addition, sum, plus / Concatenation operation. You need to specify at least two arguments:

Argument

Data type

Add / Concat mandatory

float, integertimestamp, duration, string

If you introduce a string data type in both arguments (Add and plus), the Add argument will be renamed as Concat.

plus mandatory

float, integer, timestamp, duration, string

You can add as many plus arguments as required, unless you use a timestamp data type, which allows only one.

Valid combinations

The arguments are interdependent, in other words, the data type introduced in one of them determines the data types that are valid for the others (see Description section above for the list of combinations).

If you introduce an invalid combination of data types as arguments, an error icon will appear next to the argument in question and you will be informed about some of the valid options via tooltip.

The data type of the new column values can be float, integer, duration, timestamp, or string, depending on the arguments selected. See Description section above for the list of combinations and output data types.

Example

In the demo.ecommerce.data table, we want to add 300 to all the values in the bytesTransferred column. To do it, create a new column using the Addition, sum, plus / Concatenation operation. Let's call the new column bytesTransferred+300

The arguments needed to create the new column are:

  • Add - bytesTransferred column

  • plus - Click the pencil icon and enter 300

Click Create column and you will see the following result:

How does it work in LINQ?

Use the operator select... as...  and add the operation syntax to create the new column. These are the valid formats of the Addition, sum, plus / Concatenation operation:

  • number1 + number2 +...

  • duration1 + duration2 +...

  • timestamp + duration

  • string1 + string2 +...

  • add(number1, number2,...)

  • add(duration1, duration2,...)

  • add(timestamp, duration)

  • add(string1, string2,...)

Using this operation in Activeboards

Be aware that using this operation in Activeboards presents an important limitation: the number of arguments is limited to two.

As a workaround, you can perform subsequent adding operations until you have added all the arguments you need. Visit this article for more syntax differences between the Search Window and Activeboards.

Workaround example → select add(number1, number2) as A, add(A, number3) as B, add(B, number4) as C...

Example

You can copy the following LINQ scripts and try the above example on the demo.ecommerce.data table.

from demo.ecommerce.data
  select bytesTransferred + 300 as `byesTransferred+300`

or

from demo.ecommerce.data
  select add(bytesTransferred, 300) as `bytesTransferred+300`
  • No labels