Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

set anaalysis help please.

How can I write this in set analysis.

Sum(if(ActualAccount<>0,
if([Miscellenious Fee]<>0,FeeAmount)))

Thanks

3 Replies
sujeetsingh
Master III
Master III

Something like this :


sum({$<ActualAccount-={'0'},MiscelleniusFee-={'0'} >}FeeAmount)

MK_QSL
MVP
MVP

SUM({$<

     ActualAmount -= {0},

     [Miscellenious Fee] -= {0}

>}FeeAmount)

Not applicable
Author

hi

try this

sum({$<ActualAccount-={'0'},MiscelleniusFee-={'0'} >}  FeeAmount)

**********************************************************************************