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

Announcements
Streamlining user types in Qlik Cloud capacity-based subscriptions: Read the Details
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