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

How to add IF null statement to current expression

I am currently counting First discovered dates, how would i add

"count first discovered within the last month IF Closed_mitigated_On is null'

Open:

Count({$<First_Discovered={'>=$(=MonthStart(Today()))<=$(=Today())'}> } First_Discovered)

Also, I am looking to add a compliance flag into this this chart. How would I write Count(compliance_flag for the last month)

the above count statement isn't working.

Labels (1)
13 Replies
Not applicable
Author

No difference

vinieme12
Champion III
Champion III

what is the format of this field: First_Discovered

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.
Not applicable
Author

MM/DD/YYYY

vinieme12
Champion III
Champion III

Try, for previous Month data

=Count({$<First_Discovered={">=$(=DATE(Addmonths(Today(),-1),'MM/DD/YYYY'))<$(=DATE(MonthStart(Today()),'MM/DD/YYYY'))"}> } First_Discovered)

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.