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: 
renjithpl
Specialist
Specialist

remove unwanted character from list box

Hi All,

Here follows my coding to get day format like this : 12-Tue-Oct 2010

Day([Date Coded])&'-'&weekDay([Date Coded])&'-'&MonthName([Date Coded]) as Day,

I am showing day field in a list box.

but i am getting some null value

How can i eliminate it.?

Thanks in advance

1 Solution

Accepted Solutions
Not applicable

Check first of your Date Coded field has a value!

IF(NOT ISNULL([Date Coded]),
Day([Date Coded])&'-'&weekDay([Date Coded])&'-'&MonthName([Date Coded]),
NULL()) as Day

View solution in original post

2 Replies
Not applicable

Check first of your Date Coded field has a value!

IF(NOT ISNULL([Date Coded]),
Day([Date Coded])&'-'&weekDay([Date Coded])&'-'&MonthName([Date Coded]),
NULL()) as Day

renjithpl
Specialist
Specialist
Author

Thanks Sander, its eliminated now.