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: 
Not applicable

How to remove a blank value from a List?

Hello everyone,

I created a list of Months in my project, where it is displayed a blank check box, as you can see in the print screen below:

Month.PNG

I looked into my data base an there is no blank fields, i mean, all fields are fulfilled in the table.

Someone know if it is possible to remove that blank check box from my List?

Regards,

1 Solution

Accepted Solutions
sunny_talwar

You can fix this in the script:

LOAD fieldNames,

          If(Len(Trim(Mes)) > 0, Mes) as Mes

FROM ....

View solution in original post

3 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Somehow the blank field is being created in your load script and the problem (if it is a problem) should be fixed there. If the blank is not coming from your source, then it could be something like a conversion or a join that is not working properly.

You could suppress it in the list from the front end, but if I were you, I would make sure I understood where it was coming from before suppressing it. But the best is to fix the script.

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
sunny_talwar

You can fix this in the script:

LOAD fieldNames,

          If(Len(Trim(Mes)) > 0, Mes) as Mes

FROM ....

Not applicable
Author

Thanks Sunny,

This if statement in the script fixed the blank filed issue.

Have a nice day!