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

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?