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: 
PamelaAlcantara
Contributor II
Contributor II

Set Analysis with dates greater than and missing dates

Hi all,

I am trying to get the number of items that have an initial_date after April 2019 and a closed_date that is not missing.

I have tried the following formula, but I keep getting errors,

count({<Initial_Date={'>=04/01/2019'}, Closed_Date-={"*"}>} items)

 

Thank you in advance for your help!

Pamela

 

1 Solution

Accepted Solutions
sunny_talwar
MVP
MVP

You want closed date which is not missing? Why do you have a minus sign then? Try this

Count({<Initial_Date = {">=04/01/2019"}, Closed_Date = {"*"}>} items)

View solution in original post

2 Replies
sunny_talwar
MVP
MVP

You want closed date which is not missing? Why do you have a minus sign then? Try this

Count({<Initial_Date = {">=04/01/2019"}, Closed_Date = {"*"}>} items)
PamelaAlcantara
Contributor II
Contributor II
Author

Yes, I wanted closed date which is not missing. Sorry, that was my bad, I thought the expression {"*"}  was looking for the missing values.

Thank you!