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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
samvile18
Creator III
Creator III

Help required with IF statement

Morning all,

I need to write an IF(And statement within my QlikView script, does anyone know if QlikView can handle this syntax?

If so, how should I be writing it...normally, I would go with:

If(And(Today()='24/07/2013',Name='Sam'),'Yes','No')

1 Reply
Not applicable

if(today()='24/07/2013', 'true expression',

     if(name='sam', 'true expression',

          'else expression'

     ))