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: 
BrunPierre
Partner - Master II
Partner - Master II

Create a single dimension from multiple fields

Hello there,

So essentially I want to create a single dimension by using their respective column/filename, say a Listbox called Asset, to make a selection on this laptop, desktops, server, and tablet.

Many thanks.

Code # of laptop # of desktop  # of server # of tablet
d1 0 1 0 1
a2 23 3 0 0
a3 12 5 0 0
f1 0 14 0 0
e3 0 12 0 0
z2 0 5 1 0
Labels (4)
1 Solution

Accepted Solutions
vinieme12
Champion III
Champion III

Use crosstable load

https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083

 

 

crosstable(Asset,CountOf,1)
Main:
Load Code,[# of Laptop],[# of Desktop],[# of server],[# of tablet]
From XyzSource;

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.

View solution in original post

1 Reply
vinieme12
Champion III
Champion III

Use crosstable load

https://community.qlik.com/t5/Qlik-Design-Blog/The-Crosstable-Load/ba-p/1468083

 

 

crosstable(Asset,CountOf,1)
Main:
Load Code,[# of Laptop],[# of Desktop],[# of server],[# of tablet]
From XyzSource;

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.