Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
TanyaS
Contributor
Contributor

If condition

Hi, i have two fields named as Blank and Expired_lastmonth. I am writing this piece of code, but it is throwing an error, can someone help me out?

If(Blank='Expired' or Expired_lastmonth='Expired', 'Exp', 'No') as total_exp_rev. 

(As a result of the above code, the total_exp_rev has the values where blank is expired, but not for the Expired_lastmonth field)

Labels (1)
2 Replies
anat
Master
Master

Can you share the sample data how it looks.. 

Vegar
MVP
MVP

Could it be something wrong with the second condition? I would have check if this expression returns any values.

If( Expired_lastmonth='Expired', 'Exp', 'No') as total_exp_rev,