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

Alert Multiple Criteria

Hi Guys

I have an Alert on the QV Dashboard that I want based on the following Chart,

Basically I wish it to fire when field Open/Closed is = 'Open' AND

Diff Between Noticied and Closed  > '20' --- The Calculation for this field is

=if(isnull([Date Closed]),sum(today()-[Date reported to / noticed by COPs]),sum([Date Closed]-[Date reported to / noticed by COPs]))

I can get it to fire based on the open/close using

sum

(if([Open/Closed] ='Open',1))>

0

but I cant seem to figure it out with the day count also

Can anyone please help ?

Thanks

Compliance.bmp

Labels (1)
1 Solution

Accepted Solutions
johnw
Champion III
Champion III

Maybe this?

min([Open/Closed]='Open' and (today()-[Date reported to / noticed by COPs])>20)

Edit: Added missing (

View solution in original post

2 Replies
johnw
Champion III
Champion III

Maybe this?

min([Open/Closed]='Open' and (today()-[Date reported to / noticed by COPs])>20)

Edit: Added missing (

Not applicable
Author

min([Open/Closed]='Open' and (today()-[Date reported to / noticed by COPs])>20)

Thanks John I stuck in a ( and it works perfect

Happy New year
A