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

Announcements
Qlik Connect 2026 Agenda Now Available: Explore Sessions
cancel
Showing results for 
Search instead for 
Did you mean: 
surajap123
Creator III
Creator III

if condition help

Hi There,

I have below the condition that I want to write using if(). Please help.

if (location = ind, us, aus AND isnull(cde)) or isnull(priority) or isnull(severity).

 

Please help. Thanks

 

 

Labels (1)
1 Solution

Accepted Solutions
Kushal_Chawda

@surajap123  try below

=if(match(loc,'IND','US','AUS') AND (len(trim(cde))=0 or len(trim(priority))=0 or len(trim(severity))=0), Dosomething)

View solution in original post

3 Replies
Kushal_Chawda

@surajap123  try below

=if(match(loc,'IND','US','AUS') AND (len(trim(cde))=0 or len(trim(priority))=0 or len(trim(severity))=0), Dosomething)

Chanty4u
MVP
MVP

can you try this.

if(location='ind' and location='aus '  and isnull(cde) or isnull(priority) or isnull(severity))

surajap123
Creator III
Creator III
Author

Thanks Kush