Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Learn how to migrate to Qlik Cloud Analytics™: On-Demand Briefing!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

how to remove null in my listbox?

i have like

monthnum:

05

06

07

08

09

before 05 i have null how to remove this ?

11 Replies
jagan
Partner - Champion III
Partner - Champion III

HI Manoj,

Null is supressed in List box I think it is empty spaces, use Trim() to remove blank spaces.

Try like this in script

Load

*,

If(Len( Trim (monthnum) ) > 0 , monthnum ) AS MonthNumWONull

FROM DataSource;


Or in front end give calculated dimension

If(Len( Trim (monthnum) ) > 0 , monthnum )


Hope this helps you.


Regards,

Jagan.

MarcoWedel

Hi,

can you post sample app with only the monthnum field loaded?

thanks

regards

Marco