Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Pivot Table Columns

Hi,

Is it possible to have two dimensions in single column? Say, Customers and Suppliers data being in same column.

3 Replies
Not applicable
Author

Sure, create a calculated dimension:

Customers & ' ' & Suppliers


Not applicable
Author

Thanks Miller.

By i would like to see them in rows and not by concatenating

Here is my explanation.

Customer Table

C1

C2

C3

C4

C5



Supplier Table

S1

S2

S3

S4

S5



I would make selection in customer table as C1,C2 and Supplier table as S1

My result table should be

Client Table

C1

C2

S1



Not applicable
Author

Then you would need to Concatenate the table (Union in SQL).

LOAD CustomerID As ClientID FROM Customer;
CONCATENATE LOAD SupplierID As ClientId FROM Supplier;

For Concatentate/Union, the table must have the same fields. If they don't you need to normalize them so they do.