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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
4 Replies
its_anandrjs
Champion III
Champion III

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
MVP
MVP

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
MVP
MVP

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?