Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Two similar list but not the same

I have a field and it is named  "Question" and another field named "Type"

Both have the similar contents except for Question 10.

Capture.PNG

My Question is, i am thinking of ways such that when i select Type A Question 10, Type B Question 10.a and Question 10.b is also selected in QlikView ListBox.

1 Solution

Accepted Solutions
Not applicable
Author

I didn't exactly do what you did but you gave me an idea.

Thanks for helping me out man..

So this is what i did under the list box:

=IF(Qnum='10.a' or Qnum= '10.b', subfield(Qnum, '.',1),Qnum)

So generally it will refer to both types in the list box.

It will show this:

Capture.PNG

It really helps.. Thank you!!!:D

View solution in original post

4 Replies
Anonymous
Not applicable
Author

you Need a Connection between the fields.

so if you define question and subquestion your selection will work, otherwise not

question subquestions type

1 - B

..    ..

10 a B

10 b B

11 - B

Anonymous
Not applicable
Author

Hi ,

Create one more column in using substring ()(use,Mid or Left) so that you can have only number part in this column and rename it as Question also rename your Question column from Type with other name and use this column in list box.

So that association will be created with Question and when you will select 10 your Type B will show you 10.a and 10.b

Thanks

BKC

awhitfield
Partner - Champion
Partner - Champion

The simplest way is just to enter 10 in the search window of the list box, note the question values need to be loaded as text:

HTH - Andy

Not applicable
Author

I didn't exactly do what you did but you gave me an idea.

Thanks for helping me out man..

So this is what i did under the list box:

=IF(Qnum='10.a' or Qnum= '10.b', subfield(Qnum, '.',1),Qnum)

So generally it will refer to both types in the list box.

It will show this:

Capture.PNG

It really helps.. Thank you!!!:D