Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
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)
)