Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
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.