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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
amit_saini
Master III
Master III

Where Condition help

Hi Folks,

How to implement below condition while loading the data:

Project Phase = “Closed”  and Project_Approval = “On Hold” or “Rejected” or “Pending” or “Cancelled”

So i should not load data if Project Phase = “Closed”  is matching with any one of Project_Approval = “On Hold” or “Rejected” or “Pending” or “Cancelled”


Regards,

AS

Labels (1)
1 Solution

Accepted Solutions
marcus_sommer
MVP
MVP

Maybe in this way:

where not ([Project Phase] = 'Closed' and match(Project_Approval, 'On Hold', 'Rejected', 'Pending', Cancelled'))

- Marcus

View solution in original post

4 Replies
sunny_talwar
MVP
MVP

May be using Match

Where Project Phase = 'Closed' and Match(Project_Approval, 'On Hold', 'Rejected', 'Pending', 'Cancelled');

YoussefBelloum
Champion
Champion

Hi,

WHERE [Project Phase]=“Closed” and (Project_Approval = “On Hold” or Project_Approval = “On Hold” or Project_Approval = “Rejected” or  Project_Approval = “Pendingor  Project_Approval = “Cancelled);

marcus_sommer
MVP
MVP

Maybe in this way:

where not ([Project Phase] = 'Closed' and match(Project_Approval, 'On Hold', 'Rejected', 'Pending', Cancelled'))

- Marcus

sunny_talwar
MVP
MVP

Didn't see the not... this should work