Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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.