Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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')
if(today()='24/07/2013', 'true expression',
if(name='sam', 'true expression',
'else expression'
))