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

Table

Hi all,

I'm making a pivot table for my trucks in qlikview. Now I want it to show me only the trucks that have no data in it.

You got 3 types

- Trucks that got km's and the boardcomputer registered

- Trucks that got 0 km's in the boardcomputer

- Trucks that have no data. Now these trucks I want qlikview to show me but how can I accomplish this?

Already got this expression set up but it isn't giving me the right result:

If(isnull(sum(Production.TotalDistance)), 'Zero KM', 0)

All suggestions are welcome!

3 Replies
MK_QSL
MVP
MVP

Can you provide some sample data?

Colin-Albert
Partner - Champion
Partner - Champion

You cannot select nulls directly in QlikView.

This blog by  Henric Cronström shows how you can change nulls to another value that you can then select.

http://community.qlik.com/blogs/qlikviewdesignblog/2013/05/02/finding-null

its_anandrjs
Champion III
Champion III

I assume this is the field which contains the details like Production.TotalDistance

Try like

If(isnull( Production.TotalDistance ) = -1, 'Zero KM', 0)