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 Show Nulls

I have a scenario in which I'm populating a ListBox from possible values that I'm pulling from a Database.  NULL is a valid value for the field in my database and I need a way to allow the user to choose NULL as their selected value in the ListBox.  How do I make the ListBox show the NULL or '-' as a value the user can select?  Basically I don't want the ListBox to automatically suppress the NULL value.

1 Solution

Accepted Solutions
Gysbert_Wassenaar

A listbox cannot show nulls. You will have to replace the nulls in the script with real values. Read this document for how to deal with nulls: NULL handling in QlikView


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar

A listbox cannot show nulls. You will have to replace the nulls in the script with real values. Read this document for how to deal with nulls: NULL handling in QlikView


talk is cheap, supply exceeds demand
Not applicable
Author

I was hoping to avoid using multiple DECODE statements in my script, but it seems I'll have to.  Thanks for the quick reply!