Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
josephinetedesc
Creator III
Creator III

the list box to show A B C D E ect

The List box to show the alphabet and then when a letter is selected, all the items that start with that letter to be shown.

Thank you

Jo

1 Solution

Accepted Solutions
Not applicable

Instead of Changing the script and adding inline table, we can create a ListBox with an Expression

=Left(ITEM_NAME, 1). This would generate a listbox with single unique characters according to your item name.

View solution in original post

3 Replies
Not applicable

How you are loading these letters. Are they coming from some table or file.

To resolve this you can have an Inline load at the begining of the script and that should resolve your problem.

Load * Inline [

Yourfieldname

A,

B,

C,

D,

E];

Not applicable

Instead of Changing the script and adding inline table, we can create a ListBox with an Expression

=Left(ITEM_NAME, 1). This would generate a listbox with single unique characters according to your item name.

josephinetedesc
Creator III
Creator III
Author

THank you this was very very easy to do and exactly what I wanted!

Jo