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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

show only null values

Hi all,

I am new to qlikview, i want to show under managers how many employees skill not yet updated.

Can you Please any one help on these

manager empidskill
SHYAM101C
SHYAM102C++
RAM1001JAVA
RAM1002
RAM1003

Regards,

SRUTHI

19 Replies
PrashantSangle

Hi,

If want in script

Use Where clause

load * from table

where isnull(skill) or len(trim(skill))=0;

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
anbu1984
Master III
Master III

Check this

Not applicable
Author

HI Max,

Thanks for your reply, I want to show it in a straight table Like this

RAM1002USA
RAM1003USA

Regards,

Sruthi

Not applicable
Author

Hi, what i need to check, i didn't find any attachment

PrashantSangle

Hi,

In straight table write expression,

if(isnull(skill) or len(trim(skill))=0,skill)

check supress null values from Presentation tab

Regards

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
Not applicable
Author

hi

try this in your script

LOAD * Inline [

manager,empid,skill

SHYAM,101,C

SHYAM,102,C++

RAM,1001,JAVA

RAM,1002,

RAM,1003,

]

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Or create a flag without changing the actual skill data:

LOAD *, if (len(trim(skill)) = 0, 'N', 'Y') AS skill_flag Inline [

manager,empid,skill

SHYAM,101,C

SHYAM,102,C++

RAM,1001,JAVA

RAM,1002,

RAM,1003,

];


and use set analysis like this in your straight table expression(s):


...{<skill_flag={'N'}>}...

anbu1984
Master III
Master III

Re-attaching QVW

Not applicable
Author

HI anbu, I am having the data like this.

LOAD * Inline [

manager,empid,skill

SHYAM,101,C

SHYAM,102,C++

RAM,1001,JAVA

RAM,1002,-

RAM,1003,-]