Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
surajap123
Creator III
Creator III

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 III
Creator III
Author

Thanks Kush