Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

ALT function

I have an excel sentence:

if(iserror(c3-c2)=TRUE;1; if(A3=A2; if(C3-C2<0.0007;0;1);1)

i have to implement it as a new variable called TimeDisc in qlikview but i don't know how to do it. ¿Maybe with the ALT function?

1 Reply
sunny_talwar

May be like this:

If(Len(Trim(c3-c2)) = 0, 1,

     If(A3=A2,

          If(C3-C2 < 0.0007, 0, 1), 1))