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

Announcements
Discover how organizations are unlocking new revenue streams: Watch here
cancel
Showing results for 
Search instead for 
Did you mean: 
StellaPao
Contributor
Contributor

Indicator kpi : count with multiple condition

Hello,

I want to create a kpi using the function "count" to track the number of late findings who have a level equal at 2.

I try the expression below but it doesn't work. It return 0 instead of the number of late finding.. 

Count( {<[finding level]={"*2*"},[closure date] ={' '}, [due date]={'<=(today())'}>}[finding text]) 

The problem is on the condition [due date]. Without this condition, the expression return the correct number of findings in progress. 

Thank you for your help ! 

Labels (2)
1 Solution

Accepted Solutions
marcus_sommer

Try it in this way: ... [due date]={"<=$(=today())"} ...

View solution in original post

2 Replies
marcus_sommer

Try it in this way: ... [due date]={"<=$(=today())"} ...

StellaPao
Contributor
Contributor
Author

It works! Thank you very much !