Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
master_student
Creator III
Creator III

null values

Hello Guys,

I have a measure that returns null values :

Capture.PNG

I need to remove null values.

Any idea how ?

Here the expression of SLA Globale : =Interval(Sum(TOTAL <[Code Cas], [Date de commande], SLA_GLOBAL, [Statut Cas]> Interval#(SLA_GLOBAL, 's')), 'm')

Thanks

4 Replies
its_anandrjs

Try simple if

=if( Interval(Sum(TOTAL <[Code Cas], [Date de commande], SLA_GLOBAL, [Statut Cas]> Interval#(SLA_GLOBAL, 's')), 'm') > 0 ,

Interval(Sum(TOTAL <[Code Cas], [Date de commande], SLA_GLOBAL, [Statut Cas]> Interval#(SLA_GLOBAL, 's')), 'm')

)

sunny_talwar

Are you saying that 0 is essentially null? and you want the second row to go away?

master_student
Creator III
Creator III
Author

yes

sunny_talwar

There seems to be other columns (which you might not have included in your screenshot)... are those all 0s? or is there a value within some of them?