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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Match Clause

Hi,

I have the following formula, please advise where I am going wrong:

=If (MATCH (Closed_Date = " "),'Closed Cases','Open Cases')

I need all blanks in the column to be shown a s a Closed Cases in a list box and all dates to be shown as Open Cases.

Labels (1)
3 Replies
sunny_talwar
MVP
MVP

May be try this:

=If(Len(Trim(Closed_Date)) = 0, 'Closed Cases', 'Open Cases')

richard_chilvers
Specialist
Specialist

I don't think your MATCH format is correct.

It should be along the lines of: match( M, 'Jan','Feb','Mar')

See the help for fuller details.

19iv1987
Contributor III
Contributor III

Hi Yolanda,

can u better explain what you're try to get?