Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
surajap123
Creator II
Creator II

if condition with date

Hi There,

I want to add date  to the WHOLE if condition below, ie date >=43871.  Please help

if(match(loc,'IND','US','AUS') AND (status = full and len(trim(scope))=0)
OR (len(trim(cde))=0 or len(trim(priority))=0 or len(trim(severity))=0), 1) as flag

 

Labels (1)
1 Solution

Accepted Solutions
Kushal_Chawda

@surajap123  try below

if((match(loc,'IND','US','AUS') AND (status = full and len(trim(scope))=0)
OR (len(trim(cde))=0 or len(trim(priority))=0 or len(trim(severity))=0)) and Date >=43871, 1) as flag

View solution in original post

2 Replies
Kushal_Chawda

@surajap123  try below

if((match(loc,'IND','US','AUS') AND (status = full and len(trim(scope))=0)
OR (len(trim(cde))=0 or len(trim(priority))=0 or len(trim(severity))=0)) and Date >=43871, 1) as flag

surajap123
Creator II
Creator II
Author

Thanks Kush