In QlikView, there is the CONCATENATE statement, the CONCAT() function, and the string concatenation operator (the ampersand – &). These are all very different and in this post I will explain each of them.
CONCATENATE statement
The CONCATENATE statement is used in conjunction with the LOAD statement. It appends the rows of one table to another. It is similar to a UNION ALL statement in SQL.
Let’s take a look at a couple examples using the following tables:
Employee_Location
| Employee_ID | Employee_Name | Employee_Location |
| 1 | John | NY |
| 2 | Mary | NJ |
Employee_Office
| Employee_ID | Employee_Name | Employee_State |
| 3 | Jane | FL |
| 4 | Evan | NY |
Employee_Position
| Employee_ID | Employee_Name | Employee_Position |
| 5 | Paul | Cashier |
| 6 | Sonia | Salesperson |
If we concatenated the Employee_Location and Employee_Office tables using the following load script …
[Employee_Location]: LOAD [Employee_ID] as [%Employee ID], [Employee_Name] as [Employee Name], [Employee_Location] as [Employee Location] FROM [… data source details for Employee_Location …] CONCATENATE (Employee_Location) LOAD [Employee_ID] as [%Employee ID], [Employee_Name] as [Employee Name], [Employee_State] as [Employee Location] --aliased column FROM [… data source details for Employee_Office …]
We would get this result …
Employee_Location
| Employee ID | Employee Name | Employee Location |
| 1 | John | NY |
| 2 | Mary | NJ |
| 3 | Jane | FL |
| 4 | Evan | NY |
Now, if we concatenated the Employee_Location and Employee_Position tables using the following script…
[Employee_Information]: LOAD [Employee_ID] as [%Employee ID], [Employee_Name] as [Employee Name], [Employee_Location] as [Employee Location] FROM [… data source details for Employee_Location …] CONCATENATE (Employee_Information) LOAD [Employee_ID] as [%Employee ID], [Employee_Name] as [Employee Name], [Employee_Position] as [Employee Position] FROM [… data source details for Employee_Position …]
We would get this result …
Employee_Information
| Employee ID | Employee Name | Employee Location | Employee Position |
| 1 | John | NY | |
| 2 | Mary | NJ | |
| 5 | Paul | Cashier | |
| 6 | Sonia | Salesperson |
Notice that the concatenation works even if the tables do not have the same number of columns. This provide more flexibility than the UNION or UNION ALL statements in SQL where you need to add a dummy column to the select list of your first table before performing the union.
Concat() function
The concat() function concatenates all the values of a column into a single delimited string. The column and the delimiter are specified as parameters in the function. You also have the option of producing the result string with only distinct values.
For example, if you have the following table …
| Product_ID | Product_Description | Product_Category |
| 1212 | Pen | Office Supplies |
| 3214 | Paper | Paper |
| 1345 | Sharpener | Office Supplies |
| 1177 | Eraser | Office Supplies |
| 2780 | Calculator | Electronics |
| 2901 | Computer | Electronics |
This statement: CONCAT(Product_Category, ‘,’)
Produces: Electronics, Electronics, Office Supplies, Office Supplies, Office Supplies, Paper
Notice there is a space after the comma in the delimiter, and therefore, there is a space after the comma in the output
This statement: CONCAT(Product_Category, ‘|’)
Produces: Electronics|Electronics|Office Supplies|Office Supplies|Office Supplies|Paper
Notice there is no space in the delimiter, and therefore, no space between the values in the output
This statement: CONCAT(DISTINCT Product_Category, ‘ | ’)
Produces: Electronics | Office Supplies | Paper
Notice spaces in the delimiter, and distinct output.
Concatenation operator ( & )
When you need to concatenate 2 strings together, you use the concatenation operator – the ampersand (&). For example, if you have address values in separate columns as in the table below …
| Street | City | State | Zip |
| 123 Main St | Orlando | FL | 32801 |
… you can output the address as one concatenated string by using the concatenation operator as shown in the script below …
[Street] & ‘, ‘ & [City] & ‘, ‘ & [State] & ‘ ‘ & [Zip] [Notice a comma and a space is concatenated between Street, City and State; and only a space is concatenate between State and Zip]
… and that would produce the following result …
123 Main St, Orlando, FL 32801
