Discussion Board for collaboration on QlikView Scripting.
Hi Experts
I have the following problem with a where function:
resident job Where gesperrt = 0 and Jobkriterium ='Internes Projekt' ;
I would like to add another Jobkriterium called 'Intern' and filter for jobs that either have Internes 'Projekt' OR 'Intern'
Thank you for your help!
Jan
Solved! Go to Solution.
try with
resident job Where gesperrt = 0 and (Jobkriterium ='Internes Projekt' or Jobkriterium ='Intern');
let me know
try with
resident job Where gesperrt = 0 and (Jobkriterium ='Internes Projekt' or Jobkriterium ='Intern');
let me know
merci