Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
soha1902
Creator
Creator

show only null

Hi All,

I want to show only Airline records which has the null #Full Time Employee.

See below image

11.png

How do I do this??

9 Replies
sunny_talwar

In a straight table you can add Airline as dimension and this as your expression:

If(Len(Trim([#Full Time Employee])) = 0, 'Null')

Not applicable

Hi Soha,

You can achieve len(trim([Part time Employees]))=0

Thanks,

Sreeman

Chanty4u
MVP
MVP

hi try dis,

) In Dimension make sure that suppress null values is unchecked for ur dimens.

2) try this expression - Alt(YourExpression,0)

3) In presentation tab uncheck Suppress zero value

soha1902
Creator
Creator
Author

Not working Sunny...

Simply I want to Display 2 columns Airline and #Part Time Employee

And It will display Only Airline Name where Part time Employee value is null

sunny_talwar

Full time or part time employee?

Chanty4u
MVP
MVP

chng exp to this

If(Len(Trim([#Part Time Employee])) = 0, 'Null')

sunny_talwar

Try this:

Table:

LOAD Airline,

  If(Len(Trim([#Full Time Employee])) > 0, [#Full Time Employee]) as [#Full Time Employee],

  If(Len(Trim([#Full Time Employee])) > 0, 1, 0) as Flag;

LOAD * Inline [

Airline, #Full Time Employee

ABC Airline,

DEF Airline

GHI Airline, 20

KSL Airline,

SDS Airline, 23

FSS Ainline, 43

];

Capture.PNG

soha1902
Creator
Creator
Author

Anything we can take but as of now it is showing not null values as a null.

sunny_talwar

Look at the attached example and see if that helps