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: 
renjithpl
Specialist
Specialist

Crosstable qualifier fields selection

Hi all,

I have a table like below:

NameField1Field2Field3Country
abxxmmssasd
cdxynnppefg
efzyoorrhig


I used crosstable to feed in my data,

In the crosstalbe template there is a qualifier fields, if i select 1 the name field will change pink and rest of others will be in green.
I want Name, Country as separate fields.
Field1, Field2 and Field3 as One field.

so totally 3 fields, but i dont know how to give country in qualifier fields.

if i give 2 in qualifier fields then Name and Field1 is changing pink, i dont want that. See the attachment too.

Please help me regarding this. Thanks in advance

Ranjit

1 Solution

Accepted Solutions
deepakk
Partner - Specialist III
Partner - Specialist III

YOu can ignor the wizard and write the code manually in below way.

crosstable(Field,Value,2)

Load

Name,

Country,

Field1,Field2,

Field3 from Test;


View solution in original post

3 Replies
deepakk
Partner - Specialist III
Partner - Specialist III

YOu can ignor the wizard and write the code manually in below way.

crosstable(Field,Value,2)

Load

Name,

Country,

Field1,Field2,

Field3 from Test;


renjithpl
Specialist
Specialist
Author

Cool, deepak ! it worked, thanks a lot. 🙂

renjithpl
Specialist
Specialist
Author

HI deepak,

is it possible if i want one more group

Say my table is like

NameField1Field2Field3CountryCat1Cat2
abxxmmssasd51
cdxynnppefg62
efzyoorrhig73


As per your code i got 3 fields (Name, Country and Fields).

So if i want Cat1 and Cat2 as Categories, how should i write the code.
so totally i want 4 fields. Is it possible. ?

Thanks