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

How to Exclude one department

Can someone please help me with excluding one department.

For example AdmissionDept I want to exclude 6 NorthEast

How will I write a script?

Thanks!

5 Replies
santharubban
Creator III
Creator III


if(AdmissionDept <>'NorthEast' ,AdmissionDept)

Clever_Anjos
Employee
Employee

LOAD

*

from yourqvd(qvd)

where AdmissionDept <>'NorthEast';

maxgro
MVP
MVP

another one

load

     *

from

     ......

where not match(AdmissionDept, 'NorthEast');

Not applicable
Author

Thank you very much! That worked

Clever_Anjos
Employee
Employee

That´s great!

Please mark this question as answered.