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

Announcements
April 13–15 - Dare to Unleash a New Professional You at Qlik Connect 2026: Register Now!
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'

     ))