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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
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.

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.