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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
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))