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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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!

Labels (1)
5 Replies
santharubban
Creator III
Creator III


if(AdmissionDept <>'NorthEast' ,AdmissionDept)

Clever_Anjos
Support
Support

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
Support
Support

That´s great!

Please mark this question as answered.