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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Yam1
Contributor
Contributor

Edit expession- agg part of the pop with conditions

Hi. I want the table in dashbord to show only those whose field 'Error_ind'  is equal to 1 and in these cases , if the field 'query_number' includes the values ('bcif_010','bcif_011') ​​then sum of the field 'error_ind' else maximum for the field 'failedkey'

Thanks

16305103732976178999506857017211.jpg

1 Reply
stevejoyce
Specialist II
Specialist II

If I understand correctly, this calculation?

If(match(upper(Query_Number), 'BCIF_010', 'BCIF_011'),
sum(Error_Ind),
max(failedkeys)
)