Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Force Always one Selected in List Box

Hi,

I am using this expression

IF(ACCT.CLOSE_DTE = '<=' & TODAY(),'Closed','Open')

However, it is not working..'Open' always populates the field.  Basically I want 'Closed' to display when the close date is less than or equal to today's date, otherwise display 'Open'.

I appreciate any help guys?

Thanks

1 Solution

Accepted Solutions
Not applicable
Author

Hi,

Try this

IF(ACCT.CLOSE_DTE <= TODAY(),'Closed','Open')

Regards,

Amay

View solution in original post

2 Replies
Not applicable
Author

Hi,

Try this

IF(ACCT.CLOSE_DTE <= TODAY(),'Closed','Open')

Regards,

Amay

jagan
Luminary Alumni
Luminary Alumni

Hi,

Try like this

IF(Max(ACCT.CLOSE_DTE) <= TODAY(),'Closed','Open')

Regards,

Jagan.