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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
sibrulotte
Creator III
Creator III

Alert messages: list values that have met condition

hi,

I've made an alert, and it's awesome:

  = count(if([Indicateur PB sans concordance] = 1,[Poste budgétaire]))>0

I'd like the pop-up to list the fields [poste budgétaire] that have the indicator [indicateur PB sans concordance] set to 1.

I've tried:

 

= if([Indicateur PB sans concordance]=1,[Poste budgétaire])

But it doesn't work.

What else can I try?

Simon

1 Solution

Accepted Solutions
sibrulotte
Creator III
Creator III
Author

Yeah, that was part of the answer.

This is what I am looking for:

 

=CONCAT(DISTINCT if([Indicateur PB sans concordance]=1, [Poste budgétaire]),' - ',if([Indicateur PB sans concordance]=1, [Poste budgétaire]))

Cheers Massimo!

View solution in original post

2 Replies
maxgro
MVP
MVP

perhaps this?

=concat(if([Indicateur]=1,[Poste] & ', '))

change the fields with your

sibrulotte
Creator III
Creator III
Author

Yeah, that was part of the answer.

This is what I am looking for:

 

=CONCAT(DISTINCT if([Indicateur PB sans concordance]=1, [Poste budgétaire]),' - ',if([Indicateur PB sans concordance]=1, [Poste budgétaire]))

Cheers Massimo!