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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Arnaud35
Contributor III
Contributor III

Set Analysis with not isnull condition

I have a problem on my set analysis below :

sum({<[Opportunite.Date_de_fin_d_AO]={"<=$(=Date(Today()-21, 'DD/MM/YYYY'))"},not isnull ([Opportunite.Date_de_fin_d_AO]),[Opportunite.Statut_Commercial]={"En Cours"}>}[Opportunite.EstOpportunite])

1 Solution

Accepted Solutions
chris_djih
Creator III
Creator III

try:

sum({<[Opportunite.Date_de_fin_d_AO]={"<=$(=Date(Today()-21, 'DD/MM/YYYY'))"},[Opportunite.Date_de_fin_d_AO]={"*"},[Opportunite.Statut_Commercial]={"En Cours"}>}[Opportunite.EstOpportunite])

 

 

 

 

If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.

View solution in original post

4 Replies
anat
Master
Master

not isnull  is wrong in your set analysis:

for not null use something like below

Count({<actorname-={"''"},Status={'Open'}>} RequestID)

Arnaud35
Contributor III
Contributor III
Author

I don't understand how to implement it on my request which is with a sum and not a count

 

 

chris_djih
Creator III
Creator III

try:

sum({<[Opportunite.Date_de_fin_d_AO]={"<=$(=Date(Today()-21, 'DD/MM/YYYY'))"},[Opportunite.Date_de_fin_d_AO]={"*"},[Opportunite.Statut_Commercial]={"En Cours"}>}[Opportunite.EstOpportunite])

 

 

 

 

If you found help, mark the correct answer and give some likes to ALL contributors, that tried to help.
Arnaud35
Contributor III
Contributor III
Author

Thank you very much 🙏🙏🙏