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

1 Solution

Accepted Solutions
marcus_sommer

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

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

Maybe in this way:

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

- Marcus

sunny_talwar

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