Skip to content

CONCAT

The CONCAT function in Infoveave is used to combine values across columns (row-wise).

Applicable to

  • Calculated Columns
  • Expressions

Return Value

The return value of the CONCAT function is a single string that results from concatenating the values in a column.

Remark

CONCAT function can be used across Dates, Text, and Numbers.

Syntax

CONCATNATE(<expression>,<expression>)

CONCAT in Board Expression

ExpressionA placeholder in a function that is replaced with the actual widget and measure names.
Widget NameThe specific name or identifier of the widget being used for data visualization in the specific Infoboard.
MeasureRepresents the name of the measure that is being displayed or analyzed using the widget.

Write the CONCAT function. For instance

CONCAT(<expression>,<expression>)
  1. Replace <expression> with 'Widget Name'[Measure].Replace Widget Name with the actual name of your widget and Measure with the corresponding measure name.
  2. To learn how to configure an Expression in Infoveave, visit the section Configure Expression.

CONCAT in Calculated Columns

ExpressionA placeholder in a function that is replaced with the column names.
Column NameThe name of the column in the dataset or Datasource that contains the values you want to analyze.

Write the CONCAT function. For instance

CONCAT(<expression>,<expression>)
  1. Replace <expression> with [Column Name].Replace Column Name with the actual name of your column required.
  2. To learn how to add calculated columns in Infoveave, visit the section Calculated Columns.

Example

Objective Consider that you have the below dataset, your goal is to combine the FIRST and LAST name to get the CUSTOMER NAME.

FIRST NAMELAST NAME
JohnDoe
AliceSmith
BobJohnson
EmilyBrown
MichaelDavis

You can use the CONCAT function like

CONCAT(VALUE([FIRST NAME]), " ", VALUE(LAST NAME))

The new calculated column “CUSTOMER NAME” will combine the FIRST and LAST name.

FIRST NAMELAST NAMECUSTOMER NAME
JohnDoeJohn Doe
AliceSmithAlice Smith
BobJohnsonBob Johnson
EmilyBrownEmily Brown
MichaelDavisMichael Davis