Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need help with this I'm pretty new to Qlik.
My problem, after the third if statement i got the error if take 2-3 parameters
if(match(ELZ,'X'),'Geliefert',
if(Liefetermi < Today(),(ELZ),'Offen',
if(Liefrtermi > Today(),(ELZ),'Überfällig',)))
Hi
If takes only true or false statment based on condition.
if(match(ELZ,'X'),'Geliefert',
if(Liefetermi < Today(), (ELZ), 'Offen', --> in this statement, true part is ELZ & false part is offen so it won't allow to process below statement
if(Liefrtermi > Today(),(ELZ),'Überfällig',))
Hi
If takes only true or false statment based on condition.
if(match(ELZ,'X'),'Geliefert',
if(Liefetermi < Today(), (ELZ), 'Offen', --> in this statement, true part is ELZ & false part is offen so it won't allow to process below statement
if(Liefrtermi > Today(),(ELZ),'Überfällig',))