Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear All,
Need to implement this logic into qlikview
(1 / NULLIF( a.[ABC], 0 ) ) * ( b.[XYZ])
Please advice..
(1 / (IF(LEN( a.[ABC])>0,a.[ABC],0 ) ) * ( b.[XYZ])
Please remember to mark this as helpful or the correct answer if I have helped you or answered your question.
(1 / (IF(LEN( a.[ABC])>0,a.[ABC],0 ) ) * ( b.[XYZ])
Please remember to mark this as helpful or the correct answer if I have helped you or answered your question.
Hi,
maybe
(1 / if([a.[ABC]]=' ', 0, [a.[ABC]]) ) * ( b.[XYZ])
HTH
André Gomes
(1 / (IF(LEN(trim( a.[ABC]))>0,a.[ABC],0 ) ) * ( b.[XYZ])
Please remember to mark this as helpful or the correct answer if I have helped you or answered your question
Why did you just copy and paste my answer?
Hi Prashant
try this in script
Formula:
Load
(1 / if( isnull(a.[ABC]), 0, a.[ABC]) ) * b.[XYZ] as X
Path y
;
/Teis