Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Listbox


Hi everyone,

I am looking at combining a few columns into one- so at the moment I have different columns named Apple, Pear, Banana, Grape with a tick if an object fits the description, but I want them to all be a part of the column named Fruit. Any suggestions?

Thank you!

Anna

4 Replies
alexandros17
Partner - Champion III
Partner - Champion III

When you load data you need a flag , something like

load

...

if(col1 = 'Apple' or col2 = 'pear' or ..., 'F', 'X') as isFruit

...

When you check data add the condition on flag isFruit = 'F'

Hope it helps

rustyfishbones
Master II
Master II

you need to create a Hierarchy I think and then show the list box as Treeview

puttemans
Specialist
Specialist

If you did not make too many changes in your document, you could transpose the dataset while reading it into Qlikview.

In you second screen (transform), click on the 'Enable transformation step', take the tab 'rotate', and then push the button 'Transpose'


hic
Former Employee
Former Employee

Sounds like a crosstable to me... Look at the "Crosstable" prefix in the help.

Crosstable (Fruit,Flag) Load ...

HIC