Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
How can I write the following excel formula with qlik? Thank you
=IF(AND(G3=0;H3=0;I3=0);0;G3/(G3+H3+I3))
thank you
Hi, something like this:
IF( G3=0 and H3=0 and I3=0 , 0, G3/(G3+H3+I3) )
You can take a look at Qlik help for more understanding:
thank you