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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
master_student
Creator III
Creator III

null values

Hello Guys,

I have a field that displays 0, i need to supress these values :

Capture.PNG

i checked supress null values in the presentation Tab

Here is my SLA Globale formula :

=Interval(Sum({<[Code Cas] = p({<[Statut Cas] = {'Fermé crédit', 'Fermé-remboursé', 'Fermé activation', 'Fermé BO', 'Fermé DT', 'Fermé Rétention', 'Fermé Rétention Client Perdu', 'Fermé Rétention Client Retenu'}>})>}TOTAL <[Code Cas], [Date création], [Statut Cas], PROVIDER_GRP_ID> Interval#(SLA_GLOBAL, 's')), 'm')

7 Replies
Anil_Babu_Samineni

One funny Solution

If([SLA Globale] >0, Interval(Sum({<[Code Cas] = p({<[Statut Cas] = {'Fermé crédit', 'Fermé-remboursé', 'Fermé activation', 'Fermé BO', 'Fermé DT', 'Fermé Rétention', 'Fermé Rétention Client Perdu', 'Fermé Rétention Client Retenu'}>})>}TOTAL <[Code Cas], [Date création], [Statut Cas], PROVIDER_GRP_ID> Interval#(SLA_GLOBAL, 's')), 'm'))

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
master_student
Creator III
Creator III
Author

didn't work, i always have 0 values on SLA Globale

vineetadahiya12
Contributor III
Contributor III

Hi,

If you are using a straight table, under Presentation tab there is an option to Supress Zero-Values.

This would help you.Supress Zero.PNG

master_student
Creator III
Creator III
Author

yes I did that but didn't works

Chanty4u
MVP
MVP

try

=if(Measure<>0, Dimension, Null())

master_student
Creator III
Creator III
Author

didin't work

prma7799
Master III
Master III

Please share some sample app

or try

=if(len(SLA Globale )=0, Dimension, Null())