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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
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
Partner - Champion III
Partner - Champion III

Hi,

Try like this

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

Regards,

Jagan.